Commit Graph

42539 Commits

Author SHA1 Message Date
Stefan Krah 0f55c32fc8 Merged revisions 81598 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81598 | stefan.krah | 2010-05-29 14:54:35 +0200 (Sat, 29 May 2010) | 1 line

  Fix typo
........
2010-05-29 12:57:00 +00:00
Antoine Pitrou ae15f1754a Merged revisions 81594 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81594 | antoine.pitrou | 2010-05-29 14:06:13 +0200 (sam., 29 mai 2010) | 3 lines

  Issue #8840: Make documentation for truncate() clearer
........
2010-05-29 12:08:31 +00:00
Benjamin Peterson e210be5793 Merged revisions 81579 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81579 | benjamin.peterson | 2010-05-27 22:10:31 -0500 (Thu, 27 May 2010) | 1 line

  2to3 doesn't fix test_support #6583
........
2010-05-28 03:23:52 +00:00
Ezio Melotti dd1c023ee3 Blocked revisions 81318 via svnmerge
........
  r81318 | ezio.melotti | 2010-05-19 03:32:52 +0300 (Wed, 19 May 2010) | 1 line

  Fix typo in argparse doc.
........
2010-05-27 22:33:17 +00:00
Alexander Belopolsky cfd6bc0395 Merged revisions 81566 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81566 | alexander.belopolsky | 2010-05-27 16:55:27 -0400 (Thu, 27 May 2010) | 3 lines

  Issue #7150: Raise OverflowError if the result of adding or subtracting
  timedelta from date or datetime falls outside of the MINYEAR:MAXYEAR range.
........
2010-05-27 21:53:16 +00:00
Mark Dickinson 804b9d4dac Merged revisions 81551 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81551 | mark.dickinson | 2010-05-26 20:06:33 +0100 (Wed, 26 May 2010) | 1 line

  Issue #8825: additional testcases for int(string, 0) and long(string, 0).
........
2010-05-26 19:07:12 +00:00
Victor Stinner aa59f76217 Blocked revisions 81543 via svnmerge
........
  r81543 | victor.stinner | 2010-05-26 19:25:28 +0200 (mer., 26 mai 2010) | 2 lines

  Issue #7449: Skip test_socketserver if threading support is disabled
........
2010-05-26 17:31:46 +00:00
Brian Curtin b7b21f1ea4 Merged revisions 81517 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81517 | brian.curtin | 2010-05-25 10:06:15 -0500 (Tue, 25 May 2010) | 5 lines

  Fix #2810 - handle the case where some registry calls return
  ERROR_MORE_DATA, requiring another call to get the remaining data.

  Patch by Daniel Stutzbach
........
2010-05-26 13:24:57 +00:00
Victor Stinner c3e40e0454 Merged revisions 81537 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81537 | victor.stinner | 2010-05-26 00:30:32 +0200 (mer., 26 mai 2010) | 3 lines

  Issue #3798: Write sys.exit() message to sys.stderr to use stderr encoding and
  error handler, instead of writing to the C stderr file in utf-8
........
2010-05-25 22:40:38 +00:00
Mark Dickinson 7620f66397 Merged revisions 81527 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81527 | mark.dickinson | 2010-05-25 20:44:49 +0100 (Tue, 25 May 2010) | 1 line

  Fix a NameError in test_enumerate.
........
2010-05-25 19:47:22 +00:00
R. David Murray 71b2315824 Merged revisions 81521 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81521 | r.david.murray | 2010-05-25 11:32:06 -0400 (Tue, 25 May 2010) | 2 lines

  Issue 8818: urlparse/urlsplit keyword is 'scheme', not 'default_scheme'.
........
2010-05-25 15:49:57 +00:00
R. David Murray 5b9de5ccc5 Blocked revisions 81518 via svnmerge
........
  r81518 | r.david.murray | 2010-05-25 11:20:46 -0400 (Tue, 25 May 2010) | 8 lines

  Issue 8143: sync unquote in urlparse with urllib; add comment about doing so.

  unquote is duplicated in the two files to avoid a circular reference.
  (This is fixed in Python3.)  Updates keep getting made to the public unquote
  without fixing the urlparse one, however, so this fix syncs the two
  and adds a comment to both to make sure changes are applied to both.
........
2010-05-25 15:28:15 +00:00
Benjamin Peterson e631ec4f2e Merged revisions 81509 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81509 | benjamin.peterson | 2010-05-24 21:23:32 -0500 (Mon, 24 May 2010) | 1 line

  correct default docs
........
2010-05-25 02:27:03 +00:00
Victor Stinner b0c42877de Merged revisions 81500-81501 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81500 | victor.stinner | 2010-05-24 23:33:24 +0200 (lun., 24 mai 2010) | 2 lines

  Issue #6662: Fix parsing of malformatted charref (&#bad;)
........
  r81501 | victor.stinner | 2010-05-24 23:37:28 +0200 (lun., 24 mai 2010) | 2 lines

  Add the author of the last fix (Issue #6662)
........
2010-05-24 21:42:59 +00:00
Vinay Sajip cb7ea2912a Issue #8795: logging: Backported trunk fix for SysLogHandler and Unicode. 2010-05-24 09:43:13 +00:00
Jean-Paul Calderone c28d554db8 Merged revisions 74426 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r74426 | gregory.p.smith | 2009-08-13 14:54:50 -0400 (Thu, 13 Aug 2009) | 4 lines

  Fix issue1628205: Socket file objects returned by socket.socket.makefile() now
  properly handles EINTR within the read, readline, write & flush methods.
  The socket.sendall() method now properly handles interrupted system calls.
........
2010-05-23 15:22:08 +00:00
Jean-Paul Calderone add85daa87 Unblocked revisions 74426 via svnmerge
........
  r74426 | gregory.p.smith | 2009-08-13 14:54:50 -0400 (Thu, 13 Aug 2009) | 4 lines

  Fix issue1628205: Socket file objects returned by socket.socket.makefile() now
  properly handles EINTR within the read, readline, write & flush methods.
  The socket.sendall() method now properly handles interrupted system calls.
........
2010-05-23 14:58:05 +00:00
Benjamin Peterson 4f7329693a Merged revisions 81479 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

................
  r81479 | benjamin.peterson | 2010-05-22 13:52:21 -0500 (Sat, 22 May 2010) | 13 lines

  Merged revisions 80937,81478 via svnmerge from
  svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3

  ........
    r80937 | benjamin.peterson | 2010-05-07 14:10:58 -0500 (Fri, 07 May 2010) | 1 line

    remove redundant unicode call
  ........
    r81478 | benjamin.peterson | 2010-05-22 13:47:39 -0500 (Sat, 22 May 2010) | 1 line

    ensure doctests have some future_features
  ........
................
2010-05-22 18:59:38 +00:00
Mark Dickinson 83afa36483 Merged revisions 80013-80015 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80013 | mark.dickinson | 2010-04-12 20:25:32 +0100 (Mon, 12 Apr 2010) | 14 lines

  Issue #7355: Various improvements to struct module documentation.

   - note early on that the result of struct.pack includes padding
     bytes by default

   - add examples showing how order of struct fields can affect size
     (due to padding)

   - better headers and references; introduction to format strings

   - integrate packing notes into table

  Many thanks to Meador Inge for the patch.
........
  r80014 | mark.dickinson | 2010-04-12 20:46:20 +0100 (Mon, 12 Apr 2010) | 1 line

  Rewrap some long lines in struct module doc source.
........
  r80015 | mark.dickinson | 2010-04-12 21:38:36 +0100 (Mon, 12 Apr 2010) | 1 line

  More struct doc tweaks.
........
2010-05-22 18:47:23 +00:00
Victor Stinner 09c0f24f39 Merged revisions 81471-81472 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81471 | victor.stinner | 2010-05-22 15:37:56 +0200 (sam., 22 mai 2010) | 7 lines

  Issue #6268: More bugfixes about BOM, UTF-16 and UTF-32

   * Fix seek() method of codecs.open(), don't write the BOM twice after seek(0)
   * Fix reset() method of codecs, UTF-16, UTF-32 and StreamWriter classes
   * test_codecs: use "w+" mode instead of "wt+". "t" mode is not supported by
     Solaris or Windows, but does it really exist? I found it the in the issue.
........
  r81472 | victor.stinner | 2010-05-22 15:44:25 +0200 (sam., 22 mai 2010) | 4 lines

  Fix my last commit (r81471) about codecs

  Rememder: don't touch the code just before a commit
........
2010-05-22 16:52:13 +00:00
Georg Brandl e37049ccd7 Merged revisions 81468 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81468 | georg.brandl | 2010-05-22 13:43:25 +0200 (Sa, 22 Mai 2010) | 1 line

  #8635: document enumerate() start parameter in docstring.
........
2010-05-22 11:44:30 +00:00
Georg Brandl f9f33aa38d Merged revisions 81465-81466 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81465 | georg.brandl | 2010-05-22 13:29:19 +0200 (Sa, 22 Mai 2010) | 2 lines

  Issue #3924: Ignore cookies with invalid "version" field in cookielib.
........
  r81466 | georg.brandl | 2010-05-22 13:31:16 +0200 (Sa, 22 Mai 2010) | 1 line

  Underscore the name of an internal utility function.
........
2010-05-22 11:32:59 +00:00
Georg Brandl a10d64fba2 Merged revisions 81463 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81463 | georg.brandl | 2010-05-22 10:17:23 +0200 (Sa, 22 Mai 2010) | 1 line

  #8785: less confusing description of regex.find*.
........
2010-05-22 08:21:45 +00:00
Victor Stinner f5a3eafaac Merged revisions 81459 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81459 | victor.stinner | 2010-05-22 04:11:07 +0200 (sam., 22 mai 2010) | 3 lines

  Issue #6268: Fix seek() method of codecs.open(), don't read the BOM twice
  after seek(0)
........
2010-05-22 02:12:28 +00:00
Victor Stinner 9a4a01df75 Merged revisions 81454 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81454 | victor.stinner | 2010-05-22 00:50:28 +0200 (sam., 22 mai 2010) | 3 lines

  Issue #5640: Fix Shift-JIS incremental encoder for error handlers different
  than strict
........
2010-05-21 22:55:31 +00:00
Georg Brandl 86a33341c0 Merged revisions 81450 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81450 | georg.brandl | 2010-05-22 00:03:29 +0200 (Sa, 22 Mai 2010) | 1 line

  #8709: mention Windows support for os.devnull.
........
2010-05-21 22:04:28 +00:00
Georg Brandl ada328c0ed Blocked revisions 81443 via svnmerge
........
  r81443 | georg.brandl | 2010-05-21 23:48:57 +0200 (Fr, 21 Mai 2010) | 1 line

  typo
........
2010-05-21 21:49:31 +00:00
Georg Brandl b0881f2de0 Merged revisions 81440 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81440 | georg.brandl | 2010-05-21 23:47:05 +0200 (Fr, 21 Mai 2010) | 1 line

  Correct info for Semaphore.acquire() semantics under OSX.
........
2010-05-21 21:48:10 +00:00
Benjamin Peterson a3401654e1 Merged revisions 81432 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81432 | benjamin.peterson | 2010-05-21 16:31:24 -0500 (Fri, 21 May 2010) | 1 line

  ensure the last line has a trailing newline #8782
........
2010-05-21 21:45:16 +00:00
Georg Brandl f28ae81741 Merged revisions 81431 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81431 | georg.brandl | 2010-05-21 23:30:47 +0200 (Fr, 21 Mai 2010) | 1 line

  #8707: remove duplicate paragraph part.
........
2010-05-21 21:33:16 +00:00
Benjamin Peterson 0278a67e83 Merged revisions 81414 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81414 | benjamin.peterson | 2010-05-21 15:51:45 -0500 (Fri, 21 May 2010) | 1 line

  return NotImplemented from Mapping when comparing to a non-mapping #8729
........
2010-05-21 21:03:02 +00:00
Georg Brandl 81d1f4045b Merged revisions 81419 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81419 | georg.brandl | 2010-05-21 22:58:12 +0200 (Fr, 21 Mai 2010) | 1 line

  Add missing parameter in SimpleXMLRPCServer signature.
........
2010-05-21 20:59:28 +00:00
Georg Brandl 5c3840c831 Merged revisions 81415 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81415 | georg.brandl | 2010-05-21 22:52:46 +0200 (Fr, 21 Mai 2010) | 1 line

  typo
........
2010-05-21 20:54:17 +00:00
Georg Brandl cdbe710216 Do not mention 2.7+ behavior in the 2.6 docs. 2010-05-21 20:48:48 +00:00
Benjamin Peterson 1646138f00 update 2to3 docs 2010-05-21 20:46:53 +00:00
Georg Brandl 7ff5a27bd6 typo 2010-05-21 20:42:22 +00:00
Georg Brandl bc9a99df86 Merged revisions 81404 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81404 | georg.brandl | 2010-05-21 22:24:45 +0200 (Fr, 21 Mai 2010) | 1 line

  #8783: replace link to now dead hash collision FAQ.
........
2010-05-21 20:28:10 +00:00
Antoine Pitrou 52ca516cac Merged revisions 81398 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81398 | antoine.pitrou | 2010-05-21 19:12:38 +0200 (ven., 21 mai 2010) | 6 lines

  Issue #5753: A new C API function, :cfunc:`PySys_SetArgvEx`, allows
  embedders of the interpreter to set sys.argv without also modifying
  sys.path.  This helps fix `CVE-2008-5983
  <http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2008-5983>`_.
........
2010-05-21 17:22:43 +00:00
Matthias Klose 0a3b69ef0a Merged revisions 80793 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80793 | barry.warsaw | 2010-05-05 18:15:09 +0200 (Mi, 05 Mai 2010) | 5 lines

  Bug 7755: audiotest.au is arguably copyrighted material, but definitely makes
  Debian unhappy.  The actual contents of the audio clip are unimportant, so
  replace it with something that we know is okay.  Guido likes woodpeckers.
........
2010-05-21 13:08:20 +00:00
Benjamin Peterson e38a28f498 Merged revisions 81385 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81385 | benjamin.peterson | 2010-05-20 17:23:37 -0500 (Thu, 20 May 2010) | 1 line

  fix extra 't' #8778
........
2010-05-20 22:27:10 +00:00
R. David Murray d08a3e45f3 Unblocked and Merged revisions 70997 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r70997 | r.david.murray | 2009-04-01 17:26:18 -0400 (Wed, 01 Apr 2009) | 3 lines

  Add tests checking the CSV module's ability to handle
  embedded newlines in quoted field values.
........
2010-05-20 20:53:34 +00:00
Brett Cannon 7d006260a5 Merged revisions 81380 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81380 | brett.cannon | 2010-05-20 11:37:55 -0700 (Thu, 20 May 2010) | 8 lines

  Turned out that if you used explicit relative import syntax
  (e.g. from .os import sep) and it failed, import would still try the implicit
  relative import semantics of an absolute import (from os import sep). That's
  not right, so when level is negative, only do explicit relative import
  semantics.

  Fixes issue #7902. Thanks to Meador Inge for the patch.
........
2010-05-20 18:41:08 +00:00
Victor Stinner 51f93d99aa Blocked revisions 81377 via svnmerge
........
  r81377 | victor.stinner | 2010-05-20 13:29:45 +0200 (jeu., 20 mai 2010) | 8 lines

  libpython.py: fix support of non-BMP unicode characters

  Forward port some code from Python3:

   * join surrogate pairs if sizeof(Py_UNICODE)==2
   * Enable non-BMP test on narrow builds using u"\U0001D121" instead of
     unichr(0x1D121)
........
2010-05-20 11:31:06 +00:00
Tarek Ziadé 9d814120a9 Blocked revisions 81371 via svnmerge
........
  r81371 | tarek.ziade | 2010-05-20 00:20:14 +0200 (Thu, 20 May 2010) | 1 line

  #8759: Fixed user paths in sysconfig for posix and os2 schemes
........
2010-05-19 22:26:48 +00:00
Stefan Krah 62dc3a7cbe Blocked revisions 81354 via svnmerge
........
  r81354 | stefan.krah | 2010-05-19 17:59:40 +0200 (Wed, 19 May 2010) | 3 lines

  Fix typo.
........
2010-05-19 16:08:15 +00:00
Stefan Krah 9490851e18 Merged revisions 81350 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81350 | stefan.krah | 2010-05-19 17:46:39 +0200 (Wed, 19 May 2010) | 1 line

  Fix typos in docstrings.
........
2010-05-19 15:50:05 +00:00
Georg Brandl 161cdb3bfd Merged revisions 79607-79608 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r79607 | andrew.kuchling | 2010-04-02 19:48:23 +0200 (Fr, 02 Apr 2010) | 1 line

  #6647: document that catch_warnings is not thread-safe
........
  r79608 | andrew.kuchling | 2010-04-02 19:54:26 +0200 (Fr, 02 Apr 2010) | 1 line

  #6647: add note to two examples
........
2010-05-19 14:25:58 +00:00
Georg Brandl 30de46c201 Blocked revisions 78001,78003,78005,78007,78009-78010,78018-78020,78022,78028-78033,78036-78039,78042,78046,78048,78051,78055,78059,78081-78082,78085-78086,78088,78091,78093-78094,78097,78099,78102-78109,78112,78116,78119,78125,78130-78132,78136,78148,78150,78158,78166,78211,78216-78218,78227,78229,78232,78246,78249,78280,78287-78288,78296,78319,78329,78331-78332,78336,78338,78343,78345-78346,78348-78349,78351,78354,78359-78360,78364,78367,78372-78373,78377,78379,78384,78393,78403,78416-78417,78430,78468,78486,78508-78509,78528,78544,78566,78574,78576,78580,78582,78585-78594,78600-78601,78604,78606,78613-78614,78623,78634,78644,78652-78653,78656,78660-78662,78666-78667,78671,78673,78675,78678,78680,78682,78688,78690,78694,78701,78703-78704,78706,78710,78712-78713,78719-78721,78726,78728,78731-78732,78734-78736,78738,78743,78749,78751,78755,78757-78759,78761-78762,78764,78767,78769-78770,78774-78779,78787-78791,78794,78806,78810-78812,78814-78815,78819,78828,78830,78832-78833,78838-78839,78841-78842,78844,78846-78847,78853,78855,78886,78917,78919,78922,78926,78932,78934,78937,78939,78944,78949,78954,78966,78968-78972,78974,78982-78983,78985-78986,78996 via svnmerge
........
  r78001 | michael.foord | 2010-02-05 22:45:12 +0100 (Fr, 05 Feb 2010) | 1 line

  Adding versionadded to test skipping section of unittest documentation.
........
  r78003 | michael.foord | 2010-02-05 23:55:09 +0100 (Fr, 05 Feb 2010) | 1 line

  Improving docstrings in unittest.TestCase
........
  r78005 | michael.foord | 2010-02-06 00:22:37 +0100 (Sa, 06 Feb 2010) | 1 line

  Correction to docstring correction.
........
  r78007 | michael.foord | 2010-02-06 00:28:12 +0100 (Sa, 06 Feb 2010) | 1 line

  Minor doc change.
........
  r78009 | vinay.sajip | 2010-02-06 00:43:11 +0100 (Sa, 06 Feb 2010) | 1 line

  test_logging: minor tweaks to timeouts, listening tests marked as skipped.
........
  r78010 | michael.foord | 2010-02-06 01:22:26 +0100 (Sa, 06 Feb 2010) | 1 line

  unittest.TestLoader creates a TestSuite before calling load_tests. Issue 7799.
........
  r78018 | georg.brandl | 2010-02-06 11:08:21 +0100 (Sa, 06 Feb 2010) | 1 line

  #7864: make deprecation notices a bit clearer.
........
  r78019 | georg.brandl | 2010-02-06 11:23:16 +0100 (Sa, 06 Feb 2010) | 1 line

  Review sysconfig docs.
........
  r78020 | benjamin.peterson | 2010-02-06 17:37:32 +0100 (Sa, 06 Feb 2010) | 1 line

  bump version to 2.7a3
........
  r78022 | benjamin.peterson | 2010-02-06 19:26:27 +0100 (Sa, 06 Feb 2010) | 1 line

  post release updates
........
  r78028 | benjamin.peterson | 2010-02-06 20:40:18 +0100 (Sa, 06 Feb 2010) | 1 line

  remove pointless error checking
........
  r78029 | vinay.sajip | 2010-02-06 21:00:43 +0100 (Sa, 06 Feb 2010) | 1 line

  Issue #7857: Tentatively re-enabling one test to see effect on buildbots.
........
  r78030 | benjamin.peterson | 2010-02-06 21:14:10 +0100 (Sa, 06 Feb 2010) | 1 line

  check type_getattro for correctness in a descriptor corner case
........
  r78031 | vinay.sajip | 2010-02-06 21:28:36 +0100 (Sa, 06 Feb 2010) | 1 line

  Issue #7857: Gave server thread more time to get ready, and re-enabled a skipped test.
........
  r78032 | georg.brandl | 2010-02-06 22:54:40 +0100 (Sa, 06 Feb 2010) | 1 line

  Remove unused imports from test_logging.
........
  r78033 | benjamin.peterson | 2010-02-06 23:08:15 +0100 (Sa, 06 Feb 2010) | 1 line

  make waiting for the server to start robust
........
  r78036 | georg.brandl | 2010-02-06 23:49:47 +0100 (Sa, 06 Feb 2010) | 1 line

  Remove unused import.
........
  r78037 | georg.brandl | 2010-02-06 23:59:15 +0100 (Sa, 06 Feb 2010) | 1 line

  No need to assign the results of expressions used only for side effects.
........
  r78038 | georg.brandl | 2010-02-07 00:02:29 +0100 (So, 07 Feb 2010) | 1 line

  Add a missing import.
........
  r78039 | georg.brandl | 2010-02-07 00:06:24 +0100 (So, 07 Feb 2010) | 1 line

  Add missing imports.
........
  r78042 | georg.brandl | 2010-02-07 00:12:12 +0100 (So, 07 Feb 2010) | 1 line

  Add missing import.
........
  r78046 | georg.brandl | 2010-02-07 00:18:00 +0100 (So, 07 Feb 2010) | 1 line

  Fix various missing import/unbound name errors.
........
  r78048 | georg.brandl | 2010-02-07 00:23:45 +0100 (So, 07 Feb 2010) | 1 line

  We heard you like test failures so we put unbound locals in your test so that you can fail while you fail.
........
  r78051 | georg.brandl | 2010-02-07 00:53:52 +0100 (So, 07 Feb 2010) | 1 line

  Add missing import when running these tests standalone.
........
  r78055 | vinay.sajip | 2010-02-07 02:37:08 +0100 (So, 07 Feb 2010) | 1 line

  Issue #7868: logging: added loggerClass attribute to Manager.
........
  r78059 | georg.brandl | 2010-02-07 12:34:15 +0100 (So, 07 Feb 2010) | 1 line

  Use "regexp" consistently.
........
  r78081 | vinay.sajip | 2010-02-07 13:56:54 +0100 (So, 07 Feb 2010) | 1 line

  Issue #7869: logging: improved format-time diagnostics and removed some 1.5.2 support code.
........
  r78082 | mark.dickinson | 2010-02-07 14:01:56 +0100 (So, 07 Feb 2010) | 1 line

  Add missing global declarations for 'overflowok'; remove 'overflowrequired', which is no longer needed.
........
  r78085 | vinay.sajip | 2010-02-07 14:06:51 +0100 (So, 07 Feb 2010) | 1 line

  logging: Removed some more 1.5.2 support code.
........
  r78086 | mark.dickinson | 2010-02-07 14:09:52 +0100 (So, 07 Feb 2010) | 1 line

  Actually raise on failure, instead of doing nothing.
........
  r78088 | antoine.pitrou | 2010-02-07 17:56:23 +0100 (So, 07 Feb 2010) | 4 lines

  Issue #7870: Remove duplicate test methods.  Reported by Georg Brandl.
........
  r78091 | georg.brandl | 2010-02-07 18:02:22 +0100 (So, 07 Feb 2010) | 1 line

  Rename "exc_value" attribute on assertRaises context manager to "exception".
........
  r78093 | georg.brandl | 2010-02-07 18:03:15 +0100 (So, 07 Feb 2010) | 1 line

  Remove unused imports in test modules.
........
  r78094 | michael.foord | 2010-02-07 19:44:12 +0100 (So, 07 Feb 2010) | 1 line

  assertRaises as context manager now allows you to access exception as documented
........
  r78097 | ronald.oussoren | 2010-02-07 21:18:02 +0100 (So, 07 Feb 2010) | 2 lines

  Issue 6003: ZipFile.writestr "compression_type" argument
........
  r78099 | mark.dickinson | 2010-02-07 21:31:10 +0100 (So, 07 Feb 2010) | 1 line

  Skip test_strtod entirely when correctly-rounded string->float isn't implemented
........
  r78102 | andrew.kuchling | 2010-02-08 02:35:35 +0100 (Mo, 08 Feb 2010) | 1 line

  Move distutils into its own subsection; add various items
........
  r78103 | vinay.sajip | 2010-02-08 07:50:14 +0100 (Mo, 08 Feb 2010) | 1 line

  Removed spurious print statement in test.
........
  r78104 | andrew.kuchling | 2010-02-08 14:22:24 +0100 (Mo, 08 Feb 2010) | 1 line

  Add two items; move a subsection
........
  r78105 | vinay.sajip | 2010-02-08 16:32:08 +0100 (Mo, 08 Feb 2010) | 1 line

  logging: skipped listening tests because they're not working reliably.
........
  r78106 | vinay.sajip | 2010-02-08 17:05:50 +0100 (Mo, 08 Feb 2010) | 1 line

  Issue #7857: Another attempt to keep the buildbots happy.
........
  r78107 | antoine.pitrou | 2010-02-08 21:25:47 +0100 (Mo, 08 Feb 2010) | 3 lines

  Clarify and correct description for ccbench and iobench.
........
  r78108 | vinay.sajip | 2010-02-08 22:18:15 +0100 (Mo, 08 Feb 2010) | 1 line

  logging: gingerly re-enabling skipped tests after improving thread sync code in configurator.
........
  r78109 | ezio.melotti | 2010-02-08 22:52:08 +0100 (Mo, 08 Feb 2010) | 1 line

  Fix exc_value -> exception in docstring
........
  r78112 | ezio.melotti | 2010-02-08 23:22:41 +0100 (Mo, 08 Feb 2010) | 1 line

  Fix typo
........
  r78116 | michael.foord | 2010-02-08 23:41:16 +0100 (Mo, 08 Feb 2010) | 1 line

  Make assertMultiLineEqual the default for comparing unicode strings.
........
  r78119 | michael.foord | 2010-02-09 00:15:22 +0100 (Di, 09 Feb 2010) | 1 line

  Doc fix for unittest.
........
  r78125 | antoine.pitrou | 2010-02-09 18:08:05 +0100 (Di, 09 Feb 2010) | 7 lines

  Issue #2746: Don't escape ampersands and angle brackets ("&", "<", ">")
  in XML processing instructions and comments.  These raw characters are
  allowed by the XML specification, and are necessary when outputting e.g.
  PHP code in a processing instruction.  Patch by Neil Muller.
........
  r78130 | michael.foord | 2010-02-10 15:25:12 +0100 (Mi, 10 Feb 2010) | 1 line

  Issue 7893 and Issue 7588
........
  r78131 | michael.foord | 2010-02-10 15:31:30 +0100 (Mi, 10 Feb 2010) | 1 line

  Remove deprecation on assert_. It is used too frequently.
........
  r78132 | michael.foord | 2010-02-10 16:50:58 +0100 (Mi, 10 Feb 2010) | 1 line

  Fix for unittest tests, to be merged to py3k
........
  r78136 | ezio.melotti | 2010-02-10 22:40:33 +0100 (Mi, 10 Feb 2010) | 1 line

  #7712: add a temp_cwd context manager to test_support and use it in regrtest to run all the tests in a temporary directory, saving the original CWD in test_support.SAVEDCWD. Thanks to Florent Xicluna who helped with the patch.
........
  r78148 | ronald.oussoren | 2010-02-11 14:13:08 +0100 (Do, 11 Feb 2010) | 3 lines

  Add guard around the prototype for completion_matches to enable
  compilition with libedit on OSX 10.5
........
  r78150 | ronald.oussoren | 2010-02-11 14:19:34 +0100 (Do, 11 Feb 2010) | 3 lines

  Fix copy&paste error in the definition of ARCH_RUN_32BIT for a 3-way universal
  build (all other definition where correct).
........
  r78158 | michael.foord | 2010-02-11 15:12:07 +0100 (Do, 11 Feb 2010) | 1 line

  Adding TextTestResult to unittest.__all__
........
  r78166 | mark.dickinson | 2010-02-12 22:16:38 +0100 (Fr, 12 Feb 2010) | 1 line

  Check that 'd' isn't allowed as an exponent specifier in inputs to the float function.
........
  r78211 | ezio.melotti | 2010-02-17 00:58:49 +0100 (Mi, 17 Feb 2010) | 1 line

  #7941: fix error message
........
  r78216 | andrew.kuchling | 2010-02-18 15:16:48 +0100 (Do, 18 Feb 2010) | 1 line

  Add various items
........
  r78217 | mark.dickinson | 2010-02-18 15:27:02 +0100 (Do, 18 Feb 2010) | 5 lines

  Issue #7633: Context method in the decimal module (with the exception
  of the 'canonical' and 'is_canonical' methods) now consistently accept
  integer arguments wherever a Decimal instance is accepted.  Thanks
  Juan José Conti for the patch.
........
  r78218 | mark.dickinson | 2010-02-18 15:45:33 +0100 (Do, 18 Feb 2010) | 1 line

  Doctest fixes for decimal.py:  add an integer-argument doctest for logical_invert;  don't use integer literals with a leading zero.
........
  r78227 | michael.foord | 2010-02-18 21:30:09 +0100 (Do, 18 Feb 2010) | 1 line

  unittest.TestCase uses safe_repr for producing failure messages. Partial fix for issue 7956
........
  r78229 | michael.foord | 2010-02-18 22:37:07 +0100 (Do, 18 Feb 2010) | 1 line

  Fix unittest.TestCase.assertDictContainsSubset so it can't die with unicode issues when constructing failure messages. Issue 7956
........
  r78232 | fred.drake | 2010-02-19 06:24:30 +0100 (Fr, 19 Feb 2010) | 3 lines

  - apply patch from issue 7005
  - add corresponding documentation
........
  r78246 | vinay.sajip | 2010-02-20 00:53:17 +0100 (Sa, 20 Feb 2010) | 1 line

  logging: Documented warnings module integration.
........
  r78249 | ezio.melotti | 2010-02-20 10:40:07 +0100 (Sa, 20 Feb 2010) | 1 line

  Remove e assertIs definitions and use correct assert* methods.
........
  r78280 | mark.dickinson | 2010-02-21 13:57:35 +0100 (So, 21 Feb 2010) | 3 lines

  Issue #5211: Fix complex type to avoid implicit calls to
  complex.__coerce__.  Thanks Meador Inge for the patch.
........
  r78287 | mark.dickinson | 2010-02-21 15:42:27 +0100 (So, 21 Feb 2010) | 1 line

  Reduce number of random tests in test_strtod, to avoid hogging buildbot time.
........
  r78288 | michael.foord | 2010-02-21 15:48:59 +0100 (So, 21 Feb 2010) | 1 line

  Silence UnicodeWarning in crazy unittest test.
........
  r78296 | andrew.kuchling | 2010-02-22 03:08:45 +0100 (Mo, 22 Feb 2010) | 1 line

  Re-word
........
  r78319 | ezio.melotti | 2010-02-22 17:30:58 +0100 (Mo, 22 Feb 2010) | 1 line

  #7482: clarify error message in case of division by zero of float and complex numbers.
........
  r78329 | eric.smith | 2010-02-22 19:33:47 +0100 (Mo, 22 Feb 2010) | 1 line

  Issue #7988: Fix default alignment to be right aligned for complex.__format__. Now it matches other numeric types.
........
  r78331 | andrew.kuchling | 2010-02-22 19:38:23 +0100 (Mo, 22 Feb 2010) | 1 line

  Fix comment typo
........
  r78332 | andrew.kuchling | 2010-02-22 19:42:07 +0100 (Mo, 22 Feb 2010) | 2 lines

  #7627: MH.remove() would fail if the MH mailbox was locked;
  it would call _unlock_file() and pass it a closed file object.  Noted by Rob Austein.
........
  r78336 | jack.diederich | 2010-02-22 20:55:22 +0100 (Mo, 22 Feb 2010) | 1 line

  fixes issue #1522237, bad init check in _threading_local
........
  r78338 | andrew.kuchling | 2010-02-22 22:04:02 +0100 (Mo, 22 Feb 2010) | 4 lines

  Remove Tools/modulator, a reference to it in the docs, and a screenshot of it.
  (I asked the BDFL first, and he approved removing it.  The last actual bugfix
  to Tools/modulator was in 2001; since then all changes have been search-and-replace:
  string methods, whitespace fixes, etc.)
........
  r78343 | andrew.kuchling | 2010-02-22 23:48:41 +0100 (Mo, 22 Feb 2010) | 10 lines

  #2560: remove an unnecessary 'for' loop from my_fgets() in Parser/myreadline.c.
  Noted by Joseph Armbruster; patch by Jessica McKellar.

  The original code was 'for (;;) {...}', where ... ended
  with a 'return -2' statement and did not contain a 'break' or 'continue'
  statement.  Therefore, the body of the loop is always executed once.

  Once upon a time there was a 'continue' in the loop, but it was removed in
  rev36346, committed by mwh on Wed Jul 7 17:44:12 2004.
........
  r78345 | andrew.kuchling | 2010-02-23 00:10:52 +0100 (Di, 23 Feb 2010) | 1 line

  #7706: DONT_HAVE_ERRNO_H is no longer defined by configure (after rev.46819).
........
  r78346 | andrew.kuchling | 2010-02-23 00:12:00 +0100 (Di, 23 Feb 2010) | 1 line

  #7706: add include guards where they're missing; required for Windows CE
........
  r78348 | michael.foord | 2010-02-23 00:28:32 +0100 (Di, 23 Feb 2010) | 1 line

  Support for old TestResult object (unittest) with warnings when using unsupported features.
........
  r78349 | eric.smith | 2010-02-23 01:11:16 +0100 (Di, 23 Feb 2010) | 1 line

  Issue #6902: Fix problem with built-in types format incorrectly with 0 padding.
........
  r78351 | r.david.murray | 2010-02-23 01:24:49 +0100 (Di, 23 Feb 2010) | 5 lines

  Issue 6292: for the moment at least, the test suite passes if run
  with -OO.  Tests requiring docstrings are skipped.  Patch by
  Brian Curtin, thanks to Matias Torchinsky for helping review and
  improve the patch.
........
  r78354 | tarek.ziade | 2010-02-23 05:57:05 +0100 (Di, 23 Feb 2010) | 1 line

  removed debugging code
........
  r78359 | tarek.ziade | 2010-02-23 06:16:41 +0100 (Di, 23 Feb 2010) | 1 line

  added make_archive (and secondary APIs) to shutil
........
  r78360 | tarek.ziade | 2010-02-23 06:20:22 +0100 (Di, 23 Feb 2010) | 1 line

  added a note on shutil new APIs
........
  r78364 | tarek.ziade | 2010-02-23 06:36:41 +0100 (Di, 23 Feb 2010) | 1 line

  completed the __all__ list and changed the module doctest
........
  r78367 | tarek.ziade | 2010-02-23 06:53:05 +0100 (Di, 23 Feb 2010) | 1 line

  fixed #5801: removed spurious empty lines in wsgiref
........
  r78372 | mark.dickinson | 2010-02-23 13:53:52 +0100 (Di, 23 Feb 2010) | 1 line

  Make global variable overflowok into a keyword argument;  this fixes a failure when running ./python -m test.regrtest -R 3:2: test_format
........
  r78373 | mark.dickinson | 2010-02-23 14:06:50 +0100 (Di, 23 Feb 2010) | 1 line

  Fix spacing nit.  Thanks Eric Smith for the public humiliation.
........
  r78377 | michael.foord | 2010-02-23 18:00:53 +0100 (Di, 23 Feb 2010) | 1 line

  unittest.TestResult can now be used with the TextTestRunner. TextTestRunner compatible with old TestResult objects.
........
  r78379 | jack.diederich | 2010-02-23 20:34:06 +0100 (Di, 23 Feb 2010) | 1 line

   issue#6442 use in operator instead of has_key
........
  r78384 | dirkjan.ochtman | 2010-02-23 22:09:52 +0100 (Di, 23 Feb 2010) | 4 lines

  Fix #1537721: add writeheader() method to csv.DictWriter.

  Reviewed by skip.montanaro and thomas.wouters.
........
  r78393 | amaury.forgeotdarc | 2010-02-24 00:19:39 +0100 (Mi, 24 Feb 2010) | 2 lines

  #4852: Remove dead code in every thread implementation, unused for many years.
........
  r78403 | r.david.murray | 2010-02-24 03:08:28 +0100 (Mi, 24 Feb 2010) | 3 lines

  The primary copy of lib2to3 is not trunk, so the lib2to3 change
  should not have been included in the -OO patch, back it out.
........
  r78416 | dirkjan.ochtman | 2010-02-24 05:12:11 +0100 (Mi, 24 Feb 2010) | 1 line

  Issue #8004: add a serve target to the Doc Makefile.
........
  r78417 | dirkjan.ochtman | 2010-02-24 05:49:00 +0100 (Mi, 24 Feb 2010) | 1 line

  Issue #7427: improve the representation of httplib.BadStatusLine exceptions.
........
  r78430 | dirkjan.ochtman | 2010-02-24 18:06:31 +0100 (Mi, 24 Feb 2010) | 1 line

  Add some notes about Tools/scripts/serve.py.
........
  r78468 | benjamin.peterson | 2010-02-27 01:11:42 +0100 (Sa, 27 Feb 2010) | 1 line

  run autoconf
........
  r78486 | ezio.melotti | 2010-02-27 13:42:52 +0100 (Sa, 27 Feb 2010) | 1 line

  Add a test for normpath to test_macpath.
........
  r78508 | florent.xicluna | 2010-02-27 20:20:50 +0100 (Sa, 27 Feb 2010) | 2 lines

  Clean test_subprocess: use assertRaises, skipIf, skipUnless helpers and a custom helper assertStderrEqual.
........
  r78509 | florent.xicluna | 2010-02-27 22:15:27 +0100 (Sa, 27 Feb 2010) | 2 lines

  Fix an oversight in r78508: p.wait() should be compared to 0
........
  r78528 | gregory.p.smith | 2010-03-01 03:01:47 +0100 (Mo, 01 Mär 2010) | 2 lines

  Adds the hashlib.algorithms attribute.  See issue7418.
........
  r78544 | gregory.p.smith | 2010-03-01 05:56:12 +0100 (Mo, 01 Mär 2010) | 2 lines

  Adds c_ssize_t to ctypes.  issue 6729.
........
  r78566 | barry.warsaw | 2010-03-01 22:46:51 +0100 (Mo, 01 Mär 2010) | 4 lines

  Manually copy patch for bug 7250 from the release26-maint branch.  I suck
  because I did this in the wrong order and couldn't smack svnmerge into
  submission.
........
  r78574 | benjamin.peterson | 2010-03-02 00:25:13 +0100 (Di, 02 Mär 2010) | 1 line

  remove CVS id
........
  r78576 | steven.bethard | 2010-03-02 09:38:09 +0100 (Di, 02 Mär 2010) | 3 lines

  Initial commit of the argparse library, based on argparse 1.1.
  Docs still need some updating to make getopt and optparse match the wording promised in the PEP.
  There are also probably a number of :class:ArgumentParser etc. links that could be added to the argparse documentation.
........
  r78580 | andrew.kuchling | 2010-03-02 14:55:33 +0100 (Di, 02 Mär 2010) | 1 line

  Add an item
........
  r78582 | florent.xicluna | 2010-03-02 17:00:00 +0100 (Di, 02 Mär 2010) | 2 lines

  Refactor test_dict using assertRaises.
........
  r78585 | florent.xicluna | 2010-03-02 22:34:45 +0100 (Di, 02 Mär 2010) | 2 lines

  Tentatively enable test_pep277 on all platforms.
........
  r78586 | benjamin.peterson | 2010-03-02 23:03:03 +0100 (Di, 02 Mär 2010) | 1 line

  remove coding cookie as mandated by PEP 8
........
  r78587 | benjamin.peterson | 2010-03-02 23:05:59 +0100 (Di, 02 Mär 2010) | 1 line

  set svn:eol-style
........
  r78588 | benjamin.peterson | 2010-03-02 23:08:40 +0100 (Di, 02 Mär 2010) | 1 line

  remove another coding cookie
........
  r78589 | georg.brandl | 2010-03-02 23:17:38 +0100 (Di, 02 Mär 2010) | 1 line

  Add some x-refs.
........
  r78590 | benjamin.peterson | 2010-03-02 23:20:10 +0100 (Di, 02 Mär 2010) | 1 line

  enable running of argparse tests and fix two that failed in the new environment
........
  r78591 | benjamin.peterson | 2010-03-02 23:23:33 +0100 (Di, 02 Mär 2010) | 1 line

  prevent warning filter adjustment from altering other tests
........
  r78592 | benjamin.peterson | 2010-03-02 23:24:30 +0100 (Di, 02 Mär 2010) | 1 line

  use test_main() in __main__ section
........
  r78593 | benjamin.peterson | 2010-03-02 23:26:25 +0100 (Di, 02 Mär 2010) | 1 line

  convert deprecated fail* methods to assert* variants
........
  r78594 | florent.xicluna | 2010-03-02 23:34:11 +0100 (Di, 02 Mär 2010) | 2 lines

  Test test_pep277 is only relevant for Unicode-friendly filesystems.
........
  r78600 | benjamin.peterson | 2010-03-02 23:58:01 +0100 (Di, 02 Mär 2010) | 1 line

  remove code to avoid BaseException.message bug
........
  r78601 | benjamin.peterson | 2010-03-03 00:02:02 +0100 (Mi, 03 Mär 2010) | 1 line

  remove cross-version compatibility code
........
  r78604 | benjamin.peterson | 2010-03-03 00:43:47 +0100 (Mi, 03 Mär 2010) | 1 line

  plug ref leaks
........
  r78606 | florent.xicluna | 2010-03-03 00:56:38 +0100 (Mi, 03 Mär 2010) | 2 lines

  Fix wording.
........
  r78613 | benjamin.peterson | 2010-03-03 02:55:09 +0100 (Mi, 03 Mär 2010) | 1 line

  edit for style
........
  r78614 | benjamin.peterson | 2010-03-03 03:04:24 +0100 (Mi, 03 Mär 2010) | 1 line

  fix Sphinx warnings
........
  r78623 | lars.gustaebel | 2010-03-03 12:55:48 +0100 (Mi, 03 Mär 2010) | 3 lines

  Issue #7232: Add support for the context manager protocol
  to the TarFile class.
........
  r78634 | benjamin.peterson | 2010-03-03 22:28:25 +0100 (Mi, 03 Mär 2010) | 1 line

  rephrase
........
  r78644 | benjamin.peterson | 2010-03-04 03:07:55 +0100 (Do, 04 Mär 2010) | 1 line

  set svn:executable on all regen scripts
........
  r78652 | florent.xicluna | 2010-03-04 16:57:20 +0100 (Do, 04 Mär 2010) | 2 lines

  Fix transient refleak in test_popen2.
........
  r78653 | florent.xicluna | 2010-03-04 16:58:54 +0100 (Do, 04 Mär 2010) | 2 lines

  #7805: wait until all workers are started before collecting their PIDs
........
  r78656 | r.david.murray | 2010-03-04 18:34:05 +0100 (Do, 04 Mär 2010) | 3 lines

  Fix documentation of email.Message.get_filename to match
  the fix applied in Issue 7082.
........
  r78660 | dirkjan.ochtman | 2010-03-04 20:21:53 +0100 (Do, 04 Mär 2010) | 4 lines

  Try to fix buildbot breakage from r78384.

  Thanks bitdancer and briancurtin for the help.
........
  r78661 | florent.xicluna | 2010-03-04 20:40:48 +0100 (Do, 04 Mär 2010) | 2 lines

  Cleanup.
........
  r78662 | florent.xicluna | 2010-03-04 22:31:58 +0100 (Do, 04 Mär 2010) | 2 lines

  #2777: Enable test_send_signal, test_kill and test_terminate on all platforms.
........
  r78666 | tarek.ziade | 2010-03-05 01:16:02 +0100 (Fr, 05 Mär 2010) | 1 line

  reverting partially distutils to its 2.6.x state so 2.7a4 looks more like the 2.7b1 in this. the whole revert will occur after a4 is tagged
........
  r78667 | tarek.ziade | 2010-03-05 01:29:38 +0100 (Fr, 05 Mär 2010) | 1 line

  reverted the usage of compiler_obj in Python's setup.py
........
  r78671 | florent.xicluna | 2010-03-05 01:47:40 +0100 (Fr, 05 Mär 2010) | 3 lines

  Workaround #3137: Retry SIGINT if it is not received the first time.
  test_send_signal should not hang anymore on various Linux distributions.
........
  r78673 | florent.xicluna | 2010-03-05 02:05:55 +0100 (Fr, 05 Mär 2010) | 2 lines

  Let's use assertIsNone / assertIsNotNone. It's hype.
........
  r78675 | florent.xicluna | 2010-03-05 02:12:14 +0100 (Fr, 05 Mär 2010) | 2 lines

  These line should not be there.
........
  r78678 | benjamin.peterson | 2010-03-05 04:07:59 +0100 (Fr, 05 Mär 2010) | 1 line

  set svn:eol-style
........
  r78680 | benjamin.peterson | 2010-03-05 04:15:07 +0100 (Fr, 05 Mär 2010) | 1 line

  set svn:eol-style on Lib files
........
  r78682 | benjamin.peterson | 2010-03-05 04:20:06 +0100 (Fr, 05 Mär 2010) | 1 line

  remove the svn:executable property from files that don't have shebang lines
........
  r78688 | gerhard.haering | 2010-03-05 10:12:37 +0100 (Fr, 05 Mär 2010) | 2 lines

  Merged code from pysqlite 2.6.0.
........
  r78690 | mark.dickinson | 2010-03-05 15:36:20 +0100 (Fr, 05 Mär 2010) | 3 lines

  Fix incorrect stacklevel for DeprecationWarnings originating from the struct module.
  Also clean up related tests in test_struct.
  The stacklevel fix should be backported to 2.6 once that branch is unfrozen.
........
  r78694 | mark.dickinson | 2010-03-05 15:50:22 +0100 (Fr, 05 Mär 2010) | 1 line

  Remove the redundant #define: PY_STRUCT_FLOAT_COERCE
........
  r78701 | florent.xicluna | 2010-03-05 20:31:21 +0100 (Fr, 05 Mär 2010) | 2 lines

  #2777: Handle fds more carefully to try to fix some x86-Linux failures (namely, neal bot and twisted bot).
........
  r78703 | vinay.sajip | 2010-03-05 23:11:24 +0100 (Fr, 05 Mär 2010) | 1 line

  Factored out time usage determination into a method, to facilitate alternative formatting implementations in the future.
........
  r78704 | florent.xicluna | 2010-03-06 01:16:57 +0100 (Sa, 06 Mär 2010) | 2 lines

  #2777: Apply same recipe for test_terminate and test_kill, i.e. close or redirect fds.
........
  r78706 | tarek.ziade | 2010-03-06 02:04:14 +0100 (Sa, 06 Mär 2010) | 1 line

  copied back the build_ext tests from 2.6
........
  r78710 | tarek.ziade | 2010-03-06 02:27:09 +0100 (Sa, 06 Mär 2010) | 1 line

  files used by win32 tests
........
  r78712 | tarek.ziade | 2010-03-06 03:11:14 +0100 (Sa, 06 Mär 2010) | 1 line

  fixed various failures and environment alterations in distutils.test_build_ext
........
  r78713 | tarek.ziade | 2010-03-06 03:17:28 +0100 (Sa, 06 Mär 2010) | 1 line

  search in the alternative location for VCExpress
........
  r78719 | florent.xicluna | 2010-03-06 09:07:44 +0100 (Sa, 06 Mär 2010) | 3 lines

  Keep the test files in the ./build/ subdirectory, if Python is not installed.
  Remove two hacks which are no longer needed after #7712, because all __file__ attributes are absolute.
........
  r78720 | florent.xicluna | 2010-03-06 10:11:55 +0100 (Sa, 06 Mär 2010) | 2 lines

  Print platform information to stdout, to help troubleshooting platform-specific failures.
........
  r78721 | florent.xicluna | 2010-03-06 10:54:14 +0100 (Sa, 06 Mär 2010) | 2 lines

  #2777: Apply same recipe on win32, i.e. do not inherit file handles.
........
  r78726 | florent.xicluna | 2010-03-06 15:38:09 +0100 (Sa, 06 Mär 2010) | 2 lines

  Backport "test.regrtest -R 2:3" syntax from py3k branch, and other minor adjustments.
........
  r78728 | vinay.sajip | 2010-03-06 16:12:08 +0100 (Sa, 06 Mär 2010) | 1 line

  Added schema version test in dictConfig.
........
  r78731 | vinay.sajip | 2010-03-06 16:56:03 +0100 (Sa, 06 Mär 2010) | 1 line

  Added checks for tuples in dictConfig.
........
  r78732 | florent.xicluna | 2010-03-06 18:24:36 +0100 (Sa, 06 Mär 2010) | 2 lines

  Do not print the header lines when running a single test.
........
  r78734 | florent.xicluna | 2010-03-06 19:07:18 +0100 (Sa, 06 Mär 2010) | 2 lines

  Create test_genericpath.CommonTest and reuse it to test other path modules.
........
  r78735 | florent.xicluna | 2010-03-06 19:52:52 +0100 (Sa, 06 Mär 2010) | 2 lines

  Minor tweaking of previous r78734, and add a NEWS entry.
........
  r78736 | florent.xicluna | 2010-03-06 20:43:41 +0100 (Sa, 06 Mär 2010) | 2 lines

  Skip test_send_signal, test_kill, test_terminate on win32 platforms, for 2.7a4 release.
........
  r78738 | benjamin.peterson | 2010-03-06 21:34:14 +0100 (Sa, 06 Mär 2010) | 1 line

  bump version to 2.7a4
........
  r78743 | benjamin.peterson | 2010-03-06 23:44:07 +0100 (Sa, 06 Mär 2010) | 1 line

  post release update
........
  r78749 | benjamin.peterson | 2010-03-07 01:29:44 +0100 (So, 07 Mär 2010) | 1 line

  eliminate py3k warnings in argparse
........
  r78751 | senthil.kumaran | 2010-03-07 05:09:30 +0100 (So, 07 Mär 2010) | 3 lines

  Reverting the change made in r78431.
........
  r78755 | ronald.oussoren | 2010-03-07 10:04:06 +0100 (So, 07 Mär 2010) | 3 lines

  Fix for issue #7998: pythonw didn't work when --with-framework-name was
  specified
........
  r78757 | florent.xicluna | 2010-03-07 13:14:25 +0100 (So, 07 Mär 2010) | 2 lines

  Fix some py3k warnings in the standard library.
........
  r78758 | florent.xicluna | 2010-03-07 13:18:33 +0100 (So, 07 Mär 2010) | 4 lines

  Issue #7849: Now the utility ``check_warnings`` verifies if the warnings are
  effectively raised.  A new utility ``check_py3k_warnings`` deals with py3k warnings.
........
  r78759 | florent.xicluna | 2010-03-07 13:21:36 +0100 (So, 07 Mär 2010) | 2 lines

  #2777: Enable test_send_signal, test_terminate and test_kill on win32 platforms.
........
  r78761 | florent.xicluna | 2010-03-07 16:27:39 +0100 (So, 07 Mär 2010) | 4 lines

  Do not fail if returncode is 0 on send_signal/kill/terminate, for win32 platforms.
  Do not hide the KeyboardInterrupt on POSIX platforms.
........
  r78762 | mark.dickinson | 2010-03-07 17:24:45 +0100 (So, 07 Mär 2010) | 8 lines

  Issue #1530559: When packing a non-integer with any integer conversion
  code using struct.pack, attempt to convert to an integer first using
  the argument's __int__ method (if present).  Also raise a
  DeprecationWarning for any such usage of __int__.

  This fixes a regression from 2.6, where some (but not all) integer
  conversion codes already used __int__.
........
  r78764 | mark.dickinson | 2010-03-07 18:10:19 +0100 (So, 07 Mär 2010) | 1 line

  Silence compiler warning.
........
  r78767 | florent.xicluna | 2010-03-07 18:12:23 +0100 (So, 07 Mär 2010) | 2 lines

  #2777: Try hard to make Win7 buildbot happy...
........
  r78769 | florent.xicluna | 2010-03-07 20:14:12 +0100 (So, 07 Mär 2010) | 2 lines

  Refresh the documentation for the test.test_support module.
........
  r78770 | michael.foord | 2010-03-07 21:22:12 +0100 (So, 07 Mär 2010) | 1 line

  Fix for potentials errors in constructing unittest failure messages. Plus skipped test methods no longer run setUp and tearDown (Issue 8059)
........
  r78774 | michael.foord | 2010-03-07 23:04:55 +0100 (So, 07 Mär 2010) | 1 line

  Addition of setUpClass and setUpModule shared fixtures to unittest.
........
  r78775 | michael.foord | 2010-03-08 00:10:36 +0100 (Mo, 08 Mär 2010) | 1 line

  Fix accidental name rebinding in unittest py3k warning filtering.
........
  r78776 | michael.foord | 2010-03-08 00:16:20 +0100 (Mo, 08 Mär 2010) | 1 line

  Remove accidental print statement from last commit.
........
  r78777 | florent.xicluna | 2010-03-08 00:49:03 +0100 (Mo, 08 Mär 2010) | 4 lines

  Backport the Popen.poll() protection from subprocess to multiprocessing. See #1731717.
  It should fix transient failures on test_multiprocessing.
........
  r78778 | r.david.murray | 2010-03-08 03:04:06 +0100 (Mo, 08 Mär 2010) | 9 lines

  Issue #7143: get_payload used to strip any trailing newline from a
  base64 transfer-encoded payload *after* decoding it; it no longer does.
  email had a special method in utils, _bdecode, specifically to do this,
  so it must have served a purpose at some point, yet it is clearly wrong
  per RFC.  Fixed with Barry's approval, but no backport.  Email package
  minor version number is bumped, now version 4.0.1.

  Patch by Joaquin Cuenca Abela.
........
  r78779 | benjamin.peterson | 2010-03-08 03:11:06 +0100 (Mo, 08 Mär 2010) | 1 line

  remove svn:executable from scripts without a shebang line
........
  r78787 | florent.xicluna | 2010-03-08 08:21:16 +0100 (Mo, 08 Mär 2010) | 2 lines

  Don't fail on a debug() statement, if the worker PID is (still) None.
........
  r78788 | florent.xicluna | 2010-03-08 11:58:12 +0100 (Mo, 08 Mär 2010) | 2 lines

  Fix syntax: "rc != None" -> "rc is not None"
........
  r78789 | florent.xicluna | 2010-03-08 11:59:33 +0100 (Mo, 08 Mär 2010) | 2 lines

  Replace the stderr logging with assertNotEqual(returncode, 0).
........
  r78790 | florent.xicluna | 2010-03-08 12:01:39 +0100 (Mo, 08 Mär 2010) | 2 lines

  On finalize, don't try to join not started process.
........
  r78791 | andrew.kuchling | 2010-03-08 13:00:39 +0100 (Mo, 08 Mär 2010) | 1 line

  Add various items
........
  r78794 | florent.xicluna | 2010-03-08 13:39:35 +0100 (Mo, 08 Mär 2010) | 2 lines

  Move some tests from test_macpath to test_genericpath.CommonTest
........
  r78806 | benjamin.peterson | 2010-03-08 23:15:11 +0100 (Mo, 08 Mär 2010) | 1 line

  set svn:eol-style on various files
........
  r78810 | raymond.hettinger | 2010-03-09 09:44:18 +0100 (Di, 09 Mär 2010) | 5 lines

  Improve the basic example.
  * Show both the decorator and regular form for assertRaises()
  * Use assertTrue() instead of assertIn() to teach useful minimal subset of the API
........
  r78811 | raymond.hettinger | 2010-03-09 10:01:46 +0100 (Di, 09 Mär 2010) | 4 lines

  Add nicer docstrings to namedtuples().
  Provides better tooltips and looks better in help().
........
  r78812 | raymond.hettinger | 2010-03-09 10:58:53 +0100 (Di, 09 Mär 2010) | 6 lines

  Have links in OrderedDicts be native Python lists instead
  of a custom class with __slots__.  This simplifies the
  code a bit, reduces memory consumption, improves speed,
  and eliminates the need for weak reference proxies.
........
  r78814 | raymond.hettinger | 2010-03-09 12:29:10 +0100 (Di, 09 Mär 2010) | 1 line

  Improve code clarity a bit.
........
  r78815 | florent.xicluna | 2010-03-09 20:57:01 +0100 (Di, 09 Mär 2010) | 2 lines

  #7772: Fix test_py3kwarn. Now the test suite could pass with "-3" flag.
........
  r78819 | benjamin.peterson | 2010-03-09 22:46:54 +0100 (Di, 09 Mär 2010) | 1 line

  fix ugly configure output (follow up to #6943)
........
  r78828 | florent.xicluna | 2010-03-11 00:58:42 +0100 (Do, 11 Mär 2010) | 2 lines

  Issue #7880: Fix sysconfig when the python executable is a symbolic link.
........
  r78830 | florent.xicluna | 2010-03-11 01:56:59 +0100 (Do, 11 Mär 2010) | 3 lines

  Fix the test_subprocess failure when sys.executable is meaningless: '' or a directory.
  It does not fix #7774.
........
  r78832 | florent.xicluna | 2010-03-11 02:39:55 +0100 (Do, 11 Mär 2010) | 2 lines

  It is not optimal to test sys.stderr on a debug build.
........
  r78833 | florent.xicluna | 2010-03-11 02:50:48 +0100 (Do, 11 Mär 2010) | 2 lines

  Revert r78830: realpath() should really be applied to sys.executable.
........
  r78838 | florent.xicluna | 2010-03-11 15:36:19 +0100 (Do, 11 Mär 2010) | 2 lines

  Issue #6472: The xml.etree package is updated to ElementTree 1.3.  The cElementTree module is updated too.
........
  r78839 | florent.xicluna | 2010-03-11 16:55:11 +0100 (Do, 11 Mär 2010) | 2 lines

  Fix repr of tree Element on windows.
........
  r78841 | benjamin.peterson | 2010-03-11 22:50:45 +0100 (Do, 11 Mär 2010) | 1 line

  remove executable property from doc files
........
  r78842 | benjamin.peterson | 2010-03-11 22:53:25 +0100 (Do, 11 Mär 2010) | 1 line

  use proper shebang lines
........
  r78844 | benjamin.peterson | 2010-03-11 23:03:45 +0100 (Do, 11 Mär 2010) | 1 line

  revert r78842 cgi.py change
........
  r78846 | benjamin.peterson | 2010-03-11 23:33:25 +0100 (Do, 11 Mär 2010) | 1 line

  normalize shebang lines to #!/usr/bin/env python
........
  r78847 | benjamin.peterson | 2010-03-11 23:34:12 +0100 (Do, 11 Mär 2010) | 1 line

  remove shebang line from non-executable test
........
  r78853 | vinay.sajip | 2010-03-12 07:01:21 +0100 (Fr, 12 Mär 2010) | 1 line

  Issue #8117: logging: Improved algorithm for computing initial rollover time.
........
  r78855 | vinay.sajip | 2010-03-12 10:16:10 +0100 (Fr, 12 Mär 2010) | 1 line

  Issue #8117: Updated NEWS entry and added to logging documentation.
........
  r78886 | victor.stinner | 2010-03-13 01:13:22 +0100 (Sa, 13 Mär 2010) | 2 lines

  Issue #7818: set().test_c_api() doesn't expect a set('abc'), modify the set.
........
  r78917 | florent.xicluna | 2010-03-13 12:18:49 +0100 (Sa, 13 Mär 2010) | 2 lines

  Move the xml test data to their own directory.
........
  r78919 | florent.xicluna | 2010-03-13 13:41:48 +0100 (Sa, 13 Mär 2010) | 2 lines

  Do not chdir when running test_xml_etree, and enhance the findfile helper.
........
  r78922 | georg.brandl | 2010-03-13 14:41:58 +0100 (Sa, 13 Mär 2010) | 1 line

  Update for new download location.
........
  r78926 | mark.dickinson | 2010-03-13 15:18:34 +0100 (Sa, 13 Mär 2010) | 1 line

  Fix incorrect error checks in structmember.c (backport of r78920 from py3k).
........
  r78932 | martin.v.loewis | 2010-03-13 18:53:02 +0100 (Sa, 13 Mär 2010) | 2 lines

  Add 2.6 uuids.
........
  r78934 | florent.xicluna | 2010-03-13 18:56:19 +0100 (Sa, 13 Mär 2010) | 2 lines

  Update some parts of the xml.etree documentation.
........
  r78937 | florent.xicluna | 2010-03-13 21:30:15 +0100 (Sa, 13 Mär 2010) | 3 lines

  Add the keyword argument "method=None" to the .write() method and the tostring/tostringlist functions.
  Update the function, class and method signatures, according to the new convention.
........
  r78939 | antoine.pitrou | 2010-03-13 22:21:30 +0100 (Sa, 13 Mär 2010) | 5 lines

  Issue #7993: Add a test of IO packet processing bandwidth to ccbench.
  It measures the number of UDP packets processed per second depending on
  the number of background CPU-bound Python threads.
........
  r78944 | florent.xicluna | 2010-03-14 02:22:09 +0100 (So, 14 Mär 2010) | 2 lines

  Minor documentation updates for xml.etree.
........
  r78949 | georg.brandl | 2010-03-14 10:50:54 +0100 (So, 14 Mär 2010) | 1 line

  Format and rewrap 2.7 NEWS consistently.
........
  r78954 | ezio.melotti | 2010-03-14 11:13:49 +0100 (So, 14 Mär 2010) | 1 line

  Add a link about the Public Review Issue #29
........
  r78966 | florent.xicluna | 2010-03-14 16:20:59 +0100 (So, 14 Mär 2010) | 2 lines

  Do not hardcode Expat version.  It's possible to build Python with --with-system-expat option.
........
  r78968 | matthias.klose | 2010-03-15 01:02:36 +0100 (Mo, 15 Mär 2010) | 226 lines

  - Issue #8142: Update libffi to the 3.0.9 release.
  -- Diese und die folgenden Zeilen werden ignoriert --

  M    Misc/NEWS
  A    Modules/_ctypes/libffi/m4
  A    Modules/_ctypes/libffi/m4/ltsugar.m4
  A    Modules/_ctypes/libffi/m4/libtool.m4
  A    Modules/_ctypes/libffi/m4/ltversion.m4
  A    Modules/_ctypes/libffi/m4/lt~obsolete.m4
  A    Modules/_ctypes/libffi/m4/ltoptions.m4
  A    Modules/_ctypes/libffi/ChangeLog.libffi
  M    Modules/_ctypes/libffi/configure
  M    Modules/_ctypes/libffi/Makefile.in
  M    Modules/_ctypes/libffi/fficonfig.h.in
  M    Modules/_ctypes/libffi/src/arm/sysv.S
  M    Modules/_ctypes/libffi/src/powerpc/ffitarget.h
  M    Modules/_ctypes/libffi/src/powerpc/aix.S
  M    Modules/_ctypes/libffi/src/powerpc/ffi.c
  M    Modules/_ctypes/libffi/src/powerpc/sysv.S
  M    Modules/_ctypes/libffi/src/powerpc/ffi_darwin.c
  M    Modules/_ctypes/libffi/src/powerpc/aix_closure.S
  A    Modules/_ctypes/libffi/src/closures.c
  D    Modules/_ctypes/libffi/src/darwin/ffitarget.h
  M    Modules/_ctypes/libffi/src/sh64/ffi.c
  M    Modules/_ctypes/libffi/src/sh64/sysv.S
  M    Modules/_ctypes/libffi/src/x86/ffi64.c
  M    Modules/_ctypes/libffi/src/x86/ffitarget.h
  M    Modules/_ctypes/libffi/src/x86/win32.S
  M    Modules/_ctypes/libffi/src/x86/darwin.S
  M    Modules/_ctypes/libffi/src/x86/ffi.c
  M    Modules/_ctypes/libffi/src/x86/sysv.S
  A    Modules/_ctypes/libffi/src/x86/win64.S
  M    Modules/_ctypes/libffi/src/x86/unix64.S
  A    Modules/_ctypes/libffi/src/types.c
  A    Modules/_ctypes/libffi/src/avr32
  A    Modules/_ctypes/libffi/src/avr32/ffitarget.h
  A    Modules/_ctypes/libffi/src/avr32/ffi.c
  A    Modules/_ctypes/libffi/src/avr32/sysv.S
  M    Modules/_ctypes/libffi/src/frv/ffi.c
  M    Modules/_ctypes/libffi/src/s390/sysv.S
  M    Modules/_ctypes/libffi/src/pa/ffi.c
  A    Modules/_ctypes/libffi/src/raw_api.c
  A    Modules/_ctypes/libffi/src/java_raw_api.c
  A    Modules/_ctypes/libffi/src/debug.c
  M    Modules/_ctypes/libffi/src/sparc/ffi.c
  M    Modules/_ctypes/libffi/src/sparc/v8.S
  M    Modules/_ctypes/libffi/src/mips/ffitarget.h
  M    Modules/_ctypes/libffi/src/mips/n32.S
  M    Modules/_ctypes/libffi/src/mips/o32.S
  M    Modules/_ctypes/libffi/src/mips/ffi.c
  A    Modules/_ctypes/libffi/src/dlmalloc.c
  M    Modules/_ctypes/libffi/src/sh/ffi.c
  M    Modules/_ctypes/libffi/src/sh/sysv.S
  AM   Modules/_ctypes/libffi/depcomp
  AM   Modules/_ctypes/libffi/compile
  M    Modules/_ctypes/libffi/config.guess
  AM   Modules/_ctypes/libffi/ltmain.sh
  M    Modules/_ctypes/libffi/config.sub
  AM   Modules/_ctypes/libffi/mdate-sh
  M    Modules/_ctypes/libffi/configure.ac
  A    Modules/_ctypes/libffi/doc
  A    Modules/_ctypes/libffi/doc/libffi.texi
  A    Modules/_ctypes/libffi/doc/stamp-vti
  A    Modules/_ctypes/libffi/doc/libffi.info
  A    Modules/_ctypes/libffi/doc/version.texi
  A    Modules/_ctypes/libffi/texinfo.tex
  A    Modules/_ctypes/libffi/man
  A    Modules/_ctypes/libffi/man/ffi_call.3
  A    Modules/_ctypes/libffi/man/Makefile.in
  A    Modules/_ctypes/libffi/man/ffi.3
  A    Modules/_ctypes/libffi/man/Makefile.am
  A    Modules/_ctypes/libffi/man/ffi_prep_cif.3
  A    Modules/_ctypes/libffi/ChangeLog.libgcj
  M    Modules/_ctypes/libffi/LICENSE
  M    Modules/_ctypes/libffi/include/ffi.h.in
  M    Modules/_ctypes/libffi/include/Makefile.in
  M    Modules/_ctypes/libffi/include/ffi_common.h
  M    Modules/_ctypes/libffi/include/Makefile.am
  A    Modules/_ctypes/libffi/libtool-version
  A    Modules/_ctypes/libffi/ChangeLog
  A    Modules/_ctypes/libffi/testsuite
  A    Modules/_ctypes/libffi/testsuite/Makefile.in
  A    Modules/_ctypes/libffi/testsuite/libffi.call
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_multi_ushort.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/stret_medium.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_uint16.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/struct1.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/return_uc.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/struct3.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct1.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/struct5.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/err_bad_abi.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct3.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_7_1_byte.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct5.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_double.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/struct7.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/return_sl.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct7.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/struct9.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_sint.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct9.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_pointer.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/many_win32.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_20byte1.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_multi_sshortchar.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/return_fl.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_sint64.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/many.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/strlen.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_3byte2.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/return_ldl.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/stret_large.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_multi_schar.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_multi_uchar.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_9byte1.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/err_bad_typedef.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_19byte.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_float.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/closure_fn1.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_longdouble_split.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/problem1.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/return_fl1.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/closure_fn3.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/return_dbl2.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_sshort.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/return_fl3.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/closure_fn5.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_double.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_2byte.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/promotion.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/float2.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct10.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/return_ll1.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_4byte.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/float4.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_6byte.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_longdouble.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/huge_struct.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_8byte.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_multi_sshort.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_uint32.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_sint16.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_double_va.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/return_sc.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/float.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_20byte.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_float.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/struct2.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_pointer_stack.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_5_1_byte.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/struct4.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct2.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_24byte.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/struct6.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct4.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/closure_loc_fn0.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/struct8.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct6.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/testclosure.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/nested_struct8.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_64byte.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/return_ul.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_uint.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_dbls_struct.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/strlen_win32.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/pyobjc-tc.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/stret_large2.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_multi_ushortchar.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/return_dbl.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_schar.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_uchar.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_uint64.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_longdouble.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_ulonglong.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_1_1byte.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/return_ll.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_3_1byte.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_12byte.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_4_1byte.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_3byte1.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/ffitest.h
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_6_1_byte.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_16byte.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_18byte.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/closure_fn0.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_9byte2.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_longdouble_va.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/return_dbl1.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/closure_fn2.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/closure_stdcall.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/return_fl2.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/stret_medium2.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/closure_fn4.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/negint.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_ushort.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/call.exp
  A    Modules/_ctypes/libffi/testsuite/libffi.call/closure_fn6.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/float1.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/float3.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_5byte.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_7byte.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_pointer.c
  A    Modules/_ctypes/libffi/testsuite/libffi.call/cls_align_sint32.c
  A    Modules/_ctypes/libffi/testsuite/config
  A    Modules/_ctypes/libffi/testsuite/config/default.exp
  A    Modules/_ctypes/libffi/testsuite/lib
  A    Modules/_ctypes/libffi/testsuite/lib/target-libpath.exp
  A    Modules/_ctypes/libffi/testsuite/lib/wrapper.exp
  A    Modules/_ctypes/libffi/testsuite/lib/libffi-dg.exp
  A    Modules/_ctypes/libffi/testsuite/Makefile.am
  A    Modules/_ctypes/libffi/testsuite/libffi.special
  A    Modules/_ctypes/libffi/testsuite/libffi.special/unwindtest_ffi_call.cc
  A    Modules/_ctypes/libffi/testsuite/libffi.special/unwindtest.cc
  A    Modules/_ctypes/libffi/testsuite/libffi.special/special.exp
  A    Modules/_ctypes/libffi/testsuite/libffi.special/ffitestcxx.h
  M    Modules/_ctypes/libffi/README
  A    Modules/_ctypes/libffi/libffi.pc.in
  M    Modules/_ctypes/libffi/Makefile.am
  M    Modules/_ctypes/libffi/missing
  A    Modules/_ctypes/libffi/ChangeLog.v1
  M    Modules/_ctypes/libffi/aclocal.m4
  M    Modules/_ctypes/libffi.diff
........
  r78969 | matthias.klose | 2010-03-15 01:36:18 +0100 (Mo, 15 Mär 2010) | 7 lines

  Backport from the libffi trunk:

  2010-02-15  Matthias Klose  <doko@ubuntu.com>

          * src/arm/sysv.S (__ARM_ARCH__): Define for processor
          __ARM_ARCH_7EM__.
........
  r78970 | benjamin.peterson | 2010-03-15 03:58:24 +0100 (Mo, 15 Mär 2010) | 1 line

  this little exception dance is pointless
........
  r78971 | benjamin.peterson | 2010-03-15 04:00:35 +0100 (Mo, 15 Mär 2010) | 1 line

  remove mac 9 code
........
  r78972 | benjamin.peterson | 2010-03-15 04:02:37 +0100 (Mo, 15 Mär 2010) | 1 line

  clean up files correctly
........
  r78974 | matthias.klose | 2010-03-15 13:46:18 +0100 (Mo, 15 Mär 2010) | 2 lines

  - Issue #6949: Allow the _bsddb extension to be built with db-4.8.x.
........
  r78982 | florent.xicluna | 2010-03-15 15:00:58 +0100 (Mo, 15 Mär 2010) | 2 lines

  Remove py3k deprecation warnings from these Unicode tools.
........
  r78983 | matthias.klose | 2010-03-15 18:44:12 +0100 (Mo, 15 Mär 2010) | 2 lines

  - Issue #8140: extend compileall to compile single files. Add -i option.
........
  r78985 | matthias.klose | 2010-03-15 19:00:01 +0100 (Mo, 15 Mär 2010) | 2 lines

  - Fix typo in Lib/compileall.py(__all__).
........
  r78986 | florent.xicluna | 2010-03-15 19:08:58 +0100 (Mo, 15 Mär 2010) | 3 lines

  Issue #7783 and #7787: open_urlresource invalidates the outdated files from the local cache.
  Use this feature to fix test_normalization.
........
  r78996 | martin.v.loewis | 2010-03-16 19:49:28 +0100 (Di, 16 Mär 2010) | 1 line

  Integrate merge.py into msi.py.
........
2010-05-19 14:23:57 +00:00
Georg Brandl 5a69299e53 Merged revisions 78717 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r78717 | benjamin.peterson | 2010-03-06 04:13:33 +0100 (Sa, 06 Mär 2010) | 1 line

  settscdump is definitely an implementation detail
........
2010-05-19 14:17:00 +00:00
Georg Brandl 2ee18c6ca6 Merged revisions 78559,78561-78562 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r78559 | andrew.kuchling | 2010-03-01 20:45:21 +0100 (Mo, 01 Mär 2010) | 1 line

  #7637: update discussion of minidom.unlink() and garbage collection
........
  r78561 | andrew.kuchling | 2010-03-01 20:51:43 +0100 (Mo, 01 Mär 2010) | 1 line

  #7191: describe more details of wbits parameter
........
  r78562 | andrew.kuchling | 2010-03-01 21:11:57 +0100 (Mo, 01 Mär 2010) | 1 line

  #7637: avoid repeated-concatenation antipattern in example
........
2010-05-19 14:16:14 +00:00