1. 28 Oct, 2009 6 commits
  2. 27 Oct, 2009 34 commits
    • R. David Murray's avatar
      Merged revisions 75301 via svnmerge from · 7034db33
      R. David Murray authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r75301 | r.david.murray | 2009-10-09 17:50:54 -0400 (Fri, 09 Oct 2009) | 5 lines
      
        Issue #7082: When falling back to the MIME 'name' parameter, the
        correct place to look for it is the Content-Type header.
      
        Patch by Darren Worrall.
      ........
      7034db33
    • Tarek Ziadé's avatar
      Blocked revisions 75893 via svnmerge · 33ae60ed
      Tarek Ziadé authored
      ........
        r75893 | tarek.ziade | 2009-10-28 00:06:10 +0100 (Wed, 28 Oct 2009) | 1 line
      
        Fixed #1180: Option to ignore ~/.pydistutils.cfg in Distutils
      ........
      33ae60ed
    • Georg Brandl's avatar
      Merged revisions 75887 via svnmerge from · 23016276
      Georg Brandl authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r75887 | georg.brandl | 2009-10-27 23:56:09 +0100 (Di, 27 Okt 2009) | 1 line
      
        Make sure every run of test_intern() interns a new string, otherwise that test fails e.g. when some other test in test_builtin fails and it is rerun in verbose mode.
      ........
      23016276
    • Mark Dickinson's avatar
      Blocked revisions 75883 via svnmerge · a8507d59
      Mark Dickinson authored
      ........
        r75883 | mark.dickinson | 2009-10-27 22:09:33 +0000 (Tue, 27 Oct 2009) | 1 line
      
        Test long inputs to float
      ........
      a8507d59
    • Mark Dickinson's avatar
      Blocked revisions 75879 via svnmerge · 8d384524
      Mark Dickinson authored
      ........
        r75879 | mark.dickinson | 2009-10-27 21:48:20 +0000 (Tue, 27 Oct 2009) | 3 lines
      
        Silence gcc warnings when trying to print an off_t using "lld", on platforms
        where off_t has type long (e.g., 64-bit Linux).
      ........
      8d384524
    • Tarek Ziadé's avatar
      Blocked revisions 75871 via svnmerge · 0c666495
      Tarek Ziadé authored
      ........
        r75871 | tarek.ziade | 2009-10-27 22:20:27 +0100 (Tue, 27 Oct 2009) | 1 line
      
        Issue #7218: Fix test_site for win32
      ........
      0c666495
    • Georg Brandl's avatar
      Create the function before using it. · 0f23fcf5
      Georg Brandl authored
      0f23fcf5
    • Eric Smith's avatar
      Blocked revisions 75846 via svnmerge · 9c76a98e
      Eric Smith authored
      ........
        r75846 | eric.smith | 2009-10-27 15:42:57 -0400 (Tue, 27 Oct 2009) | 1 line
      
        Removed PyOS_ascii_atof from marshal.c, as mentioned in issue 7117. Also brings it more in line with py3k.
      ........
      9c76a98e
    • Eric Smith's avatar
      Blocked revisions 75824 via svnmerge · 44aebce6
      Eric Smith authored
      ........
        r75824 | eric.smith | 2009-10-27 14:33:14 -0400 (Tue, 27 Oct 2009) | 1 line
      
        Removed PyOS_ascii_atof from ast.c, as mentioned in issue 7117.
      ........
      44aebce6
    • Mark Dickinson's avatar
      Blocked revisions 75651,75653,75658,75660,75664,75666,75672,75720,75730-75731,75739 via svnmerge · 55a01488
      Mark Dickinson authored
      ........
        r75651 | mark.dickinson | 2009-10-24 13:13:30 +0100 (Sat, 24 Oct 2009) | 7 lines
      
        Issue #7117: Prepare for backport of py3k float repr.
        Add the Python/dtoa.c file containing the main algorithms;
        add corresponding include file and include in Python.h;
        include license information for Python/dtoa.c;
        add dtoa.c and dtoa.h to Makefile.
      ........
        r75653 | mark.dickinson | 2009-10-24 13:17:24 +0100 (Sat, 24 Oct 2009) | 1 line
      
        Temporary define to avoid build failure
      ........
        r75658 | mark.dickinson | 2009-10-24 14:28:38 +0100 (Sat, 24 Oct 2009) | 8 lines
      
        Issue #7117 (backport py3k float repr) continued:
         - add double endianness detection to configure script
         - add configure-time check to see whether we can use inline
           assembly to get and set x87 control word in configure script
         - add functions to get and set x87 control word in Python/pymath.c
         - add pyport.h logic to determine whether it's safe to use the
           short float repr or not
      ........
        r75660 | mark.dickinson | 2009-10-24 14:31:41 +0100 (Sat, 24 Oct 2009) | 1 line
      
        Remove temporary define from r75653
      ........
        r75664 | mark.dickinson | 2009-10-24 14:44:16 +0100 (Sat, 24 Oct 2009) | 1 line
      
        Configure check for double rounding should take BASECFLAGS into account
      ........
        r75666 | mark.dickinson | 2009-10-24 15:01:08 +0100 (Sat, 24 Oct 2009) | 4 lines
      
        Issue #7117 (backport py3k float repr) continued:
        Add sys.float_repr_style attribute ('short' if short float
        repr is in used;  'legacy' otherwise).
      ........
        r75672 | mark.dickinson | 2009-10-24 16:54:35 +0100 (Sat, 24 Oct 2009) | 4 lines
      
        Issue #7117:  temporarily disable the short float repr while the
        pieces are being assembled.  To re-enable, define the preprocessor
        symbol PY_SHORT_FLOAT_REPR
      ........
        r75720 | mark.dickinson | 2009-10-26 15:39:50 +0000 (Mon, 26 Oct 2009) | 3 lines
      
        Issue #7117 (backport py3k float repr) continued:
        Backport pystrtod.c from py3k.
      ........
        r75730 | mark.dickinson | 2009-10-26 21:09:09 +0000 (Mon, 26 Oct 2009) | 2 lines
      
        Issue #7117:  Backport missing pystrtod.h declarations from py3k.
      ........
        r75731 | mark.dickinson | 2009-10-26 21:11:20 +0000 (Mon, 26 Oct 2009) | 4 lines
      
        Issue #7117: Use PyOS_string_to_double instead of PyOS_ascii_strtod in
        floatobject.c.  Also, remove limitation on length of unicode inputs to
        float().
      ........
        r75739 | mark.dickinson | 2009-10-26 22:28:14 +0000 (Mon, 26 Oct 2009) | 5 lines
      
        Issue #7117: Use PyOS_string_to_double instead of PyOS_ascii_strtod in
        complexobject.c.  Also remove length restriction on unicode inputs to
        the complex constructor.
      ........
      55a01488
    • Mark Dickinson's avatar
      Blocked revisions 75728 via svnmerge · 8d039566
      Mark Dickinson authored
      ........
        r75728 | mark.dickinson | 2009-10-26 19:59:23 +0000 (Mon, 26 Oct 2009) | 3 lines
      
        Use correct conversion specifier and length modifier when printing an
        integer of type off_t.  Also, don't assume that long long is available.
      ........
      8d039566
    • Mark Dickinson's avatar
      Blocked revisions 75714 via svnmerge · 7a5c2655
      Mark Dickinson authored
      ........
        r75714 | mark.dickinson | 2009-10-26 14:18:44 +0000 (Mon, 26 Oct 2009) | 1 line
      
        Warn against replacing PyNumber_Add with PyNumber_InPlaceAdd in sum
      ........
      7a5c2655
    • Mark Dickinson's avatar
      Blocked revisions 75711 via svnmerge · 3e438e0b
      Mark Dickinson authored
      ........
        r75711 | mark.dickinson | 2009-10-26 11:59:30 +0000 (Mon, 26 Oct 2009) | 1 line
      
        Skip readline tests if readline module is not available.
      ........
      3e438e0b
    • Mark Dickinson's avatar
      Merged revisions 75648 via svnmerge from · 2c835948
      Mark Dickinson authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r75648 | mark.dickinson | 2009-10-24 12:47:17 +0100 (Sat, 24 Oct 2009) | 1 line
      
        Acknowledge Ned Deily (extensive bug hunting and testing on OS X)
      ........
      2c835948
    • Mark Dickinson's avatar
      Merged revisions 75561 via svnmerge from · 20a7cfca
      Mark Dickinson authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r75561 | mark.dickinson | 2009-10-20 14:33:03 +0100 (Tue, 20 Oct 2009) | 3 lines
      
        Issue #7099: Decimal.is_normal should return True for all nonzero
        finite non-subnormal values, even those with exponent > Emax.
      ........
      20a7cfca
    • Antoine Pitrou's avatar
      Merged revisions 75818 via svnmerge from · f3a0ff61
      Antoine Pitrou authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r75818 | antoine.pitrou | 2009-10-27 18:41:58 +0100 (mar., 27 oct. 2009) | 3 lines
      
        Issue #7205: Fix a possible deadlock when using a BZ2File object from several threads at once.
      ........
      f3a0ff61
    • Mark Dickinson's avatar
      Blocked revisions 75470 via svnmerge · ab90b90c
      Mark Dickinson authored
      ........
        r75470 | mark.dickinson | 2009-10-17 22:46:32 +0100 (Sat, 17 Oct 2009) | 1 line
      
        Protect against attempts to replace PyNumber_Add with PyNumber_InPlaceAdd in builtin sum
      ........
      ab90b90c
    • Mark Dickinson's avatar
      Blocked revisions 75454 via svnmerge · 8f919695
      Mark Dickinson authored
      ........
        r75454 | mark.dickinson | 2009-10-17 08:06:37 +0100 (Sat, 17 Oct 2009) | 1 line
      
        test_math ulp computation was wrong on big-endian systems
      ........
      8f919695
    • Mark Dickinson's avatar
      Merged revisions 75440 via svnmerge from · a47460ac
      Mark Dickinson authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r75440 | mark.dickinson | 2009-10-15 18:45:39 +0100 (Thu, 15 Oct 2009) | 1 line
      
        Allow core Python build to succeed under WITHOUT_COMPLEX.  The module build stage still fails.
      ........
      a47460ac
    • Mark Dickinson's avatar
      Blocked revisions 75438 via svnmerge · a649498a
      Mark Dickinson authored
      ........
        r75438 | mark.dickinson | 2009-10-15 16:53:58 +0100 (Thu, 15 Oct 2009) | 1 line
      
        Issue #7142:  Fix uses of unicode in memoryview objects
      ........
      a649498a
    • Mark Dickinson's avatar
      Blocked revisions 75434 via svnmerge · 6de416c7
      Mark Dickinson authored
      ........
        r75434 | mark.dickinson | 2009-10-15 16:18:55 +0100 (Thu, 15 Oct 2009) | 1 line
      
        Fix missing semicolon
      ........
      6de416c7
    • Mark Dickinson's avatar
      Merged revisions 75286 via svnmerge from · 25567ef1
      Mark Dickinson authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r75286 | mark.dickinson | 2009-10-08 17:28:39 +0100 (Thu, 08 Oct 2009) | 2 lines
      
        Update decimal test data to the most recent set from Mike Cowlishaw.
      ........
      25567ef1
    • Mark Dickinson's avatar
      Merged revisions 75283 via svnmerge from · 9b12553a
      Mark Dickinson authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r75283 | mark.dickinson | 2009-10-08 16:54:10 +0100 (Thu, 08 Oct 2009) | 4 lines
      
        Issue #7078:  _struct.__doc__ was being ignored.  Import it into struct.
        Also add description of '?' struct format character.  Thanks Gabriel
        Genellina for the patch.
      ........
      9b12553a
    • Mark Dickinson's avatar
      Merged revisions 75275 via svnmerge from · 5e672d0e
      Mark Dickinson authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r75275 | mark.dickinson | 2009-10-07 20:22:05 +0100 (Wed, 07 Oct 2009) | 6 lines
      
        Issue #7048: logb should round its result when that result doesn't fit
        into the available precision.  (Tests for this change are included in
        the most recent set of testcases from the Decimal Specification site;
        those testcases will be updated shortly.)
      ........
      5e672d0e
    • Georg Brandl's avatar
      Blocked revisions... · 0bea8443
      Georg Brandl authored
      Blocked revisions 70466,70470,70472,70475,70477,70533,70538,70544,70601,70691,70844,70969,71073,71078,71127,71389,71392,72052,72774,73001,73006,73334-73335,73372,73382,73532,73536,73540,73697,74300 via svnmerge
      
      ........
        r70466 | raymond.hettinger | 2009-03-18 23:13:20 +0100 (Mi, 18 Mär 2009) | 1 line
      
        Use mixin methods where possible. (2.7 only -- these don't all exist in 3.0)
      ........
        r70470 | raymond.hettinger | 2009-03-19 16:21:10 +0100 (Do, 19 Mär 2009) | 6 lines
      
        Improve implementation with better underlying data structure
        for O(1) deletions.  Big-Oh performance now the same as regular
        dictionaries.  Uses a doubly-linked list instead of a list/seq
        to track insertion order.
      ........
        r70472 | raymond.hettinger | 2009-03-19 20:24:43 +0100 (Do, 19 Mär 2009) | 1 line
      
        Silence a compiler warning.
      ........
        r70475 | raymond.hettinger | 2009-03-20 00:12:41 +0100 (Fr, 20 Mär 2009) | 6 lines
      
        * Add implementation notes.
        * Re-order methods so that those touching the underlying data
          structure come first and the derived methods come last.
      ........
        r70477 | raymond.hettinger | 2009-03-20 00:22:25 +0100 (Fr, 20 Mär 2009) | 1 line
      
        Fix typo
      ........
        r70533 | raymond.hettinger | 2009-03-23 01:08:09 +0100 (Mo, 23 Mär 2009) | 6 lines
      
        Add more comments.  Improve variable names.
        Make links clearer by using a Link object
        instead of a list.  Use proxy links to avoid
        circular references.
      ........
        r70538 | raymond.hettinger | 2009-03-23 05:42:18 +0100 (Mo, 23 Mär 2009) | 1 line
      
        Move initialization of root link to __init__.
      ........
        r70544 | raymond.hettinger | 2009-03-23 19:26:59 +0100 (Mo, 23 Mär 2009) | 1 line
      
        Make imported name private and wrap long-line.
      ........
        r70601 | raymond.hettinger | 2009-03-25 23:41:32 +0100 (Mi, 25 Mär 2009) | 1 line
      
        Separate initialization from clearing.
      ........
        r70691 | raymond.hettinger | 2009-03-29 20:51:11 +0200 (So, 29 Mär 2009) | 1 line
      
        Make life easier for non-CPython implementations.
      ........
        r70844 | raymond.hettinger | 2009-03-31 19:47:06 +0200 (Di, 31 Mär 2009) | 1 line
      
        Per the language summit, the optional fastpath imports should use from-import-star.
      ........
        r70969 | raymond.hettinger | 2009-04-01 20:50:56 +0200 (Mi, 01 Apr 2009) | 1 line
      
        Issue #5647: MutableSet.__iand__() no longer mutates self during iteration.
      ........
        r71073 | raymond.hettinger | 2009-04-03 00:25:40 +0200 (Fr, 03 Apr 2009) | 4 lines
      
        Have namedtuple's field renamer assign names that
        are consistent with the corresponding tuple index.
      ........
        r71078 | raymond.hettinger | 2009-04-03 04:43:54 +0200 (Fr, 03 Apr 2009) | 4 lines
      
        Localize the function lookup in timeit.
      ........
        r71127 | raymond.hettinger | 2009-04-04 10:46:58 +0200 (Sa, 04 Apr 2009) | 1 line
      
        Replace the localized min/max calls with normal if/else
      ........
        r71389 | raymond.hettinger | 2009-04-08 07:39:38 +0200 (Mi, 08 Apr 2009) | 1 line
      
        Add docstrings.
      ........
        r71392 | raymond.hettinger | 2009-04-08 10:26:55 +0200 (Mi, 08 Apr 2009) | 1 line
      
        Minor factoring.
      ........
        r72052 | raymond.hettinger | 2009-04-27 23:12:27 +0200 (Mo, 27 Apr 2009) | 1 line
      
        Update spec version number.
      ........
        r72774 | raymond.hettinger | 2009-05-18 17:51:59 +0200 (Mo, 18 Mai 2009) | 1 line
      
        Issue 6037: MutableSequence.__iadd__ should return self.
      ........
        r73001 | raymond.hettinger | 2009-05-29 03:36:26 +0200 (Fr, 29 Mai 2009) | 1 line
      
        Issue 5150: Add rstrip() option to IDLE's format menu.
      ........
        r73006 | raymond.hettinger | 2009-05-29 06:58:52 +0200 (Fr, 29 Mai 2009) | 1 line
      
        Issue 5982: Classmethod and staticmethod expose wrapped function with __func__.
      ........
        r73334 | raymond.hettinger | 2009-06-10 18:15:02 +0200 (Mi, 10 Jun 2009) | 1 line
      
        Issue 6256: Fix stacklevel in warning message.
      ........
        r73335 | raymond.hettinger | 2009-06-10 18:15:40 +0200 (Mi, 10 Jun 2009) | 1 line
      
        Fix signed/unsigned compiler warning.
      ........
        r73372 | raymond.hettinger | 2009-06-12 00:08:10 +0200 (Fr, 12 Jun 2009) | 1 line
      
        Move comment to correct line.
      ........
        r73382 | raymond.hettinger | 2009-06-12 01:14:53 +0200 (Fr, 12 Jun 2009) | 1 line
      
        Issue 6261: Clarify behavior of random.uniform().
      ........
        r73532 | raymond.hettinger | 2009-06-23 22:59:43 +0200 (Di, 23 Jun 2009) | 3 lines
      
        Issue 6329: Fix iteration for memoryviews.
      ........
        r73536 | raymond.hettinger | 2009-06-23 23:32:28 +0200 (Di, 23 Jun 2009) | 1 line
      
        Issue 6305: Clarify error message for large arguments to itertools.islice().
      ........
        r73540 | raymond.hettinger | 2009-06-24 00:20:04 +0200 (Mi, 24 Jun 2009) | 1 line
      
        Add procedural note.
      ........
        r73697 | raymond.hettinger | 2009-06-29 21:10:29 +0200 (Mo, 29 Jun 2009) | 1 line
      
        Issue 6370: Performance issue with collections.Counter().
      ........
        r74300 | raymond.hettinger | 2009-08-04 21:08:05 +0200 (Di, 04 Aug 2009) | 1 line
      
        Issue 6637: defaultdict.copy() failed with an empty factory.
      ........
      0bea8443
    • Georg Brandl's avatar
      Blocked revisions... · 5de0dce2
      Georg Brandl authored
      Blocked revisions 68964,69014,69023,69070,69080,69085,69087,69227,69237,69242,69466,69525,69528,69530,69743,69748,69751,69770,69837-69838,69937,70016,70149,70293,70296,70623,74448 via svnmerge
      
      ........
        r68964 | raymond.hettinger | 2009-01-26 17:52:22 +0100 (Mo, 26 Jan 2009) | 1 line
      
        Fix signed/unsigned mismatch.
      ........
        r69014 | raymond.hettinger | 2009-01-27 11:03:04 +0100 (Di, 27 Jan 2009) | 1 line
      
        Issue 5021: doctest.testfile should set __name__
      ........
        r69023 | raymond.hettinger | 2009-01-27 14:26:35 +0100 (Di, 27 Jan 2009) | 1 line
      
        Add more tests for the powerset() recipe.
      ........
        r69070 | raymond.hettinger | 2009-01-29 00:02:26 +0100 (Do, 29 Jan 2009) | 6 lines
      
        Issue 4920:  Fixed next() vs __next__() issues in the ABCs
        for Iterator and MutableSet.  Also added thorough test for
        required abstractmethods.
      ........
        r69080 | brett.cannon | 2009-01-29 01:55:33 +0100 (Do, 29 Jan 2009) | 2 lines
      
        Ignore .pyc and .pyo files.
      ........
        r69085 | raymond.hettinger | 2009-01-29 04:21:42 +0100 (Do, 29 Jan 2009) | 1 line
      
        Update itertools.__doc__ to include all tools.
      ........
        r69087 | raymond.hettinger | 2009-01-29 04:43:44 +0100 (Do, 29 Jan 2009) | 1 line
      
        Fix typo.
      ........
        r69227 | raymond.hettinger | 2009-02-02 22:50:13 +0100 (Mo, 02 Feb 2009) | 1 line
      
        Issue 1242657: list(obj) can swallow KeyboardInterrupt.
      ........
        r69237 | raymond.hettinger | 2009-02-03 03:23:19 +0100 (Di, 03 Feb 2009) | 1 line
      
        Validate that __length_hint__ returns a usable result.
      ........
        r69242 | raymond.hettinger | 2009-02-03 04:37:03 +0100 (Di, 03 Feb 2009) | 1 line
      
        Register decimals as numbers.Number
      ........
        r69466 | raymond.hettinger | 2009-02-09 19:39:41 +0100 (Mo, 09 Feb 2009) | 3 lines
      
        Issue 5171: itertools.product docstring missing 'repeat' argument
      ........
        r69525 | raymond.hettinger | 2009-02-12 11:16:19 +0100 (Do, 12 Feb 2009) | 1 line
      
        Fix spaces/tabs in example.
      ........
        r69528 | raymond.hettinger | 2009-02-12 13:04:26 +0100 (Do, 12 Feb 2009) | 1 line
      
        Add an extra testcase.
      ........
        r69530 | raymond.hettinger | 2009-02-12 13:43:01 +0100 (Do, 12 Feb 2009) | 1 line
      
        One more test.
      ........
        r69743 | raymond.hettinger | 2009-02-19 00:10:19 +0100 (Do, 19 Feb 2009) | 1 line
      
        Py3k warnings now automatically include -Qwarn for division.
      ........
        r69748 | raymond.hettinger | 2009-02-19 03:15:14 +0100 (Do, 19 Feb 2009) | 1 line
      
        Add keyword arg support to itertools.compress().
      ........
        r69751 | raymond.hettinger | 2009-02-19 03:38:25 +0100 (Do, 19 Feb 2009) | 1 line
      
        Add keyword arg support to itertools.repeat().
      ........
        r69770 | raymond.hettinger | 2009-02-19 10:50:24 +0100 (Do, 19 Feb 2009) | 1 line
      
        Inline coefficients in gamma().  Add reflection formula.  Add comments.
      ........
        r69837 | raymond.hettinger | 2009-02-21 08:17:22 +0100 (Sa, 21 Feb 2009) | 4 lines
      
        Fix keyword arguments for itertools.count().
        Step arg without a start arg was ignored.
      ........
        r69838 | raymond.hettinger | 2009-02-21 09:58:42 +0100 (Sa, 21 Feb 2009) | 1 line
      
        Speedup and simplify negative counter using count's new step argument.
      ........
        r69937 | raymond.hettinger | 2009-02-24 13:23:23 +0100 (Di, 24 Feb 2009) | 3 lines
      
        Backport 69934:  Register xrange() as a Sequence.
      ........
        r70016 | raymond.hettinger | 2009-02-27 09:09:47 +0100 (Fr, 27 Feb 2009) | 1 line
      
        Give mapping views a usable repr.
      ........
        r70149 | raymond.hettinger | 2009-03-03 23:59:25 +0100 (Di, 03 Mär 2009) | 5 lines
      
        Backport 70140, 70141, 70143, and 70144.
        Adds tests, switches from list to deque, fixes __reduce__
        which was unnecessarily copying __keys.
      ........
        r70293 | raymond.hettinger | 2009-03-10 05:49:21 +0100 (Di, 10 Mär 2009) | 1 line
      
        Add a version tag to the decimal module.
      ........
        r70296 | raymond.hettinger | 2009-03-10 10:31:48 +0100 (Di, 10 Mär 2009) | 1 line
      
        Small optimization for corner case where maxlen==0.
      ........
        r70623 | benjamin.peterson | 2009-03-26 22:30:10 +0100 (Do, 26 Mär 2009) | 1 line
      
        add missing import
      ........
        r74448 | guilherme.polo | 2009-08-14 16:36:45 +0200 (Fr, 14 Aug 2009) | 3 lines
      
        Issue #1135: Add the XView and YView mix-ins to avoid duplicating
        the xview* and yview* methods.
      ........
      5de0dce2
    • Georg Brandl's avatar
      Blocked revisions... · 281f6e2a
      Georg Brandl authored
      Blocked revisions 70615,70618-70621,70624,70856,70864,71004,71043,71208,71721,72582-72583,72812,72923,73151,73247,73839,74007,74095,75095 via svnmerge
      
      ........
        r70615 | benjamin.peterson | 2009-03-26 20:58:18 +0100 (Do, 26 Mär 2009) | 5 lines
      
        add some useful utilities for skipping tests with unittest's new skipping ability
      
        most significantly apply a modified portion of the patch from #4242 with
        patches for skipping implementation details
      ........
        r70618 | benjamin.peterson | 2009-03-26 21:48:25 +0100 (Do, 26 Mär 2009) | 1 line
      
        remove test_support.TestSkipped and just use unittest.SkipTest
      ........
        r70619 | benjamin.peterson | 2009-03-26 21:49:40 +0100 (Do, 26 Mär 2009) | 1 line
      
        fix naming
      ........
        r70620 | benjamin.peterson | 2009-03-26 22:10:30 +0100 (Do, 26 Mär 2009) | 1 line
      
        fix incorrect auto-translation of TestSkipped -> unittest.SkipTest
      ........
        r70621 | benjamin.peterson | 2009-03-26 22:11:16 +0100 (Do, 26 Mär 2009) | 1 line
      
        must pass argument to get expected behavior ;)
      ........
        r70624 | benjamin.peterson | 2009-03-26 22:30:54 +0100 (Do, 26 Mär 2009) | 1 line
      
        ** is required here
      ........
        r70856 | r.david.murray | 2009-03-31 20:32:17 +0200 (Di, 31 Mär 2009) | 7 lines
      
        A few more test skips via import_module, and change import_module to
        return the error message produced by importlib, so that if an import
        in the package whose import is being wrapped is what failed the skip
        message will contain the name of that module instead of the name of the
        wrapped module.  Also fixed formatting of some previous comments.
      ........
        r70864 | gregory.p.smith | 2009-03-31 21:03:28 +0200 (Di, 31 Mär 2009) | 10 lines
      
        Rename the actual method definitions to the official assertFoo names.
      
        Adds unittests to make sure the old fail* names continue to work now
        and adds a comment that they are pending deprecation.
      
        Also adds a test to confirm that the plural Equals method variants
        continue to exist even though we're unlikely to deprecate those.
      
        http://bugs.python.org/issue2578
      ........
        r71004 | benjamin.peterson | 2009-04-02 01:15:49 +0200 (Do, 02 Apr 2009) | 1 line
      
        remove double underscores
      ........
        r71043 | michael.foord | 2009-04-02 07:51:54 +0200 (Do, 02 Apr 2009) | 7 lines
      
        Store the functions in the _type_equality_funcs as wrapped objects that are deep copyable.
      
        This allows for the deep copying of TestCase instances.
      
        Issue 5660
      ........
        r71208 | michael.foord | 2009-04-05 03:15:01 +0200 (So, 05 Apr 2009) | 4 lines
      
        Change the way unittest.TestSuite use their tests to always access them through iteration. Non behavior changing, this allows you to create custom subclasses that override __iter__.
      
        Issue #5693
      ........
        r71721 | benjamin.peterson | 2009-04-18 21:26:19 +0200 (Sa, 18 Apr 2009) | 1 line
      
        fix a few nits in unittest.py #5771
      ........
        r72582 | michael.foord | 2009-05-12 12:46:23 +0200 (Di, 12 Mai 2009) | 1 line
      
        Fix to restore command line behaviour for test modules using unittest.main(). Regression caused by issue 5995. Michael
      ........
        r72583 | michael.foord | 2009-05-12 12:49:13 +0200 (Di, 12 Mai 2009) | 1 line
      
        Better fix for modules using unittest.main(). Fixes regression caused by commit for issue 5995. Michael Foord
      ........
        r72812 | michael.foord | 2009-05-22 00:57:02 +0200 (Fr, 22 Mai 2009) | 1 line
      
        Rename TestCase._result to _resultForDoCleanups to avoid potential clashes in TestCase subclasses. Issue 6072.
      ........
        r72923 | michael.foord | 2009-05-25 22:36:56 +0200 (Mo, 25 Mai 2009) | 1 line
      
        Make assertSequenceEqual error messages less cryptic, particularly for nested sequences.
      ........
        r73151 | michael.foord | 2009-06-02 20:08:27 +0200 (Di, 02 Jun 2009) | 1 line
      
        Restore default testRunner argument in unittest.main to None. Issue 6177
      ........
        r73247 | michael.foord | 2009-06-05 16:14:34 +0200 (Fr, 05 Jun 2009) | 1 line
      
        Fix unittest discovery tests for Windows. Issue 6199
      ........
        r73839 | gregory.p.smith | 2009-07-04 10:42:10 +0200 (Sa, 04 Jul 2009) | 3 lines
      
        Merge r73838 from py3k branch.  Use the nondeprecated unittest method
        names.
      ........
        r74007 | michael.foord | 2009-07-14 19:58:12 +0200 (Di, 14 Jul 2009) | 1 line
      
        Move TestRunner initialisation into unittest.TestProgram.runTests. Fixes issue 6418.
      ........
        r74095 | benjamin.peterson | 2009-07-19 22:18:21 +0200 (So, 19 Jul 2009) | 1 line
      
        split unittest.py into a package
      ........
        r75095 | michael.foord | 2009-09-27 21:15:41 +0200 (So, 27 Sep 2009) | 1 line
      
        Test creation moved from TestProgram.parseArgs to TestProgram.createTests exclusively. Issue 6956.
      ........
      281f6e2a
    • Georg Brandl's avatar
      Blocked revisions 72199,72210,72241,73109,73135 via svnmerge · d98a9d09
      Georg Brandl authored
      ........
        r72199 | benjamin.peterson | 2009-05-02 19:33:01 +0200 (Sa, 02 Mai 2009) | 1 line
      
        remove py3k compat code
      ........
        r72210 | gregory.p.smith | 2009-05-02 20:58:21 +0200 (Sa, 02 Mai 2009) | 2 lines
      
        Convert test method names to PEP8 style.
      ........
        r72241 | gregory.p.smith | 2009-05-03 21:37:05 +0200 (So, 03 Mai 2009) | 3 lines
      
        Optimization: move RFC defined network constant construction out of
        the is_*() methods and into module private instances.
      ........
        r73109 | gregory.p.smith | 2009-06-01 19:40:41 +0200 (Mo, 01 Jun 2009) | 6 lines
      
        Sync up __version__ number with the version of the ipaddr-py project this
        library came from that it matches.
      
        Remove the former apache license text now that its been contributed to PSF to
        avoid confusion.
      ........
        r73135 | gregory.p.smith | 2009-06-02 07:25:34 +0200 (Di, 02 Jun 2009) | 3 lines
      
        Fixes issue6169: it was possible for two ipaddr network addresses to compare
        as both < and > than eachother.
      ........
      d98a9d09
    • Georg Brandl's avatar
      Blocked revisions... · 69b34234
      Georg Brandl authored
      Blocked revisions 72314,73190,73201,73212,73252,73275,73448,73471,73605,74028-74029,74542,74644,74650,74811,74908,74912,74954-74955,75175,75181,75313,75315,75318,75321-75322,75325,75327,75329,75337,75339,75342,75344,75346,75348,75350-75351,75354,75356,75358 via svnmerge
      
      ........
        r72314 | georg.brandl | 2009-05-05 09:48:12 +0200 (Di, 05 Mai 2009) | 1 line
      
        #5932: fix error return in _convertPyInt_AsSsize_t() conversion function.
      ........
        r73190 | georg.brandl | 2009-06-04 01:23:45 +0200 (Do, 04 Jun 2009) | 2 lines
      
        Avoid PendingDeprecationWarnings emitted by deprecated unittest methods.
      ........
        r73201 | georg.brandl | 2009-06-04 10:58:32 +0200 (Do, 04 Jun 2009) | 1 line
      
        #5767: remove sgmlop support from xmlrpclib; the sgmlop parser does not do much validation and is no longer much faster than e.g. the cElementTree XMLParser.
      ........
        r73212 | georg.brandl | 2009-06-04 12:10:41 +0200 (Do, 04 Jun 2009) | 1 line
      
        Better name for "Ctor".
      ........
        r73252 | georg.brandl | 2009-06-06 07:54:34 +0200 (Sa, 06 Jun 2009) | 1 line
      
        #6206: fix test__locale.
      ........
        r73275 | georg.brandl | 2009-06-07 22:37:52 +0200 (So, 07 Jun 2009) | 1 line
      
        Add Ezio.
      ........
        r73448 | georg.brandl | 2009-06-16 19:43:44 +0200 (Di, 16 Jun 2009) | 1 line
      
        Remove unused macro.
      ........
        r73471 | georg.brandl | 2009-06-19 00:24:26 +0200 (Fr, 19 Jun 2009) | 1 line
      
        #6276: Remove usage of nested() in favor of new with statement with multiple managers.
      ........
        r73605 | georg.brandl | 2009-06-28 14:10:18 +0200 (So, 28 Jun 2009) | 1 line
      
        Remove stray pychecker directive.
      ........
        r74028 | georg.brandl | 2009-07-16 21:24:48 +0200 (Do, 16 Jul 2009) | 1 line
      
        #6482: simplify "except: raise" to "finally:".
      ........
        r74029 | georg.brandl | 2009-07-16 23:47:51 +0200 (Do, 16 Jul 2009) | 1 line
      
        Revert r74028.
      ........
        r74542 | georg.brandl | 2009-08-23 23:28:56 +0200 (So, 23 Aug 2009) | 1 line
      
        Restore alphabetic order.
      ........
        r74644 | georg.brandl | 2009-09-04 09:55:14 +0200 (Fr, 04 Sep 2009) | 1 line
      
        #5047: remove Monterey support from configure.
      ........
        r74650 | georg.brandl | 2009-09-04 13:19:34 +0200 (Fr, 04 Sep 2009) | 1 line
      
        #5101: add back tests to test_funcattrs that were lost during unittest conversion, and make some PEP8 cleanups.
      ........
        r74811 | georg.brandl | 2009-09-15 22:26:59 +0200 (Di, 15 Sep 2009) | 1 line
      
        Add Armin Ronacher.
      ........
        r74908 | georg.brandl | 2009-09-18 15:57:11 +0200 (Fr, 18 Sep 2009) | 1 line
      
        Use str.format() to fix beginner's mistake with %-style string formatting.
      ........
        r74912 | georg.brandl | 2009-09-18 18:19:56 +0200 (Fr, 18 Sep 2009) | 1 line
      
        Optimize optimization and fix method name in docstring.
      ........
        r74954 | georg.brandl | 2009-09-19 15:13:56 +0200 (Sa, 19 Sep 2009) | 1 line
      
        Add Doug.
      ........
        r74955 | georg.brandl | 2009-09-19 15:20:49 +0200 (Sa, 19 Sep 2009) | 1 line
      
        Add Mark Summerfield.
      ........
        r75175 | georg.brandl | 2009-10-01 22:11:14 +0200 (Do, 01 Okt 2009) | 1 line
      
        Fix some weird whitespace and two other overlong lines.
      ........
        r75181 | georg.brandl | 2009-10-01 23:02:39 +0200 (Do, 01 Okt 2009) | 1 line
      
        Add NEWS entry for r75180.
      ........
        r75313 | georg.brandl | 2009-10-10 23:07:35 +0200 (Sa, 10 Okt 2009) | 1 line
      
        Bring old demo up-to-date.
      ........
        r75315 | georg.brandl | 2009-10-10 23:10:05 +0200 (Sa, 10 Okt 2009) | 1 line
      
        Remove unneeded "L" suffixes.
      ........
        r75318 | benjamin.peterson | 2009-10-10 23:15:58 +0200 (Sa, 10 Okt 2009) | 1 line
      
        remove script which uses long gone module
      ........
        r75321 | georg.brandl | 2009-10-10 23:43:21 +0200 (Sa, 10 Okt 2009) | 1 line
      
        Remove outdated comment and fix a few style issues.
      ........
        r75322 | georg.brandl | 2009-10-10 23:47:31 +0200 (Sa, 10 Okt 2009) | 1 line
      
        Show use of range() step argument nicely.
      ........
        r75325 | georg.brandl | 2009-10-10 23:55:11 +0200 (Sa, 10 Okt 2009) | 1 line
      
        Modernize factorisation demo (mostly augassign.)
      ........
        r75327 | georg.brandl | 2009-10-11 00:03:43 +0200 (So, 11 Okt 2009) | 1 line
      
        Style fixes.
      ........
        r75329 | georg.brandl | 2009-10-11 00:26:45 +0200 (So, 11 Okt 2009) | 1 line
      
        Modernize all around (dont ask me how useful that script is nowadays...)
      ........
        r75337 | georg.brandl | 2009-10-11 10:18:44 +0200 (So, 11 Okt 2009) | 1 line
      
        Update morse script, avoid globals, use iterators.
      ........
        r75339 | georg.brandl | 2009-10-11 10:39:16 +0200 (So, 11 Okt 2009) | 1 line
      
        Update markov demo.
      ........
        r75342 | georg.brandl | 2009-10-11 10:45:03 +0200 (So, 11 Okt 2009) | 1 line
      
        Remove useless script "mkrcs" and update README.
      ........
        r75344 | georg.brandl | 2009-10-11 10:48:28 +0200 (So, 11 Okt 2009) | 1 line
      
        Update primes script.
      ........
        r75346 | mark.dickinson | 2009-10-11 11:35:57 +0200 (So, 11 Okt 2009) | 1 line
      
        Fix 'primes 0 1'
      ........
        r75348 | mark.dickinson | 2009-10-11 12:01:17 +0200 (So, 11 Okt 2009) | 1 line
      
        Set missing executable property on scripts
      ........
        r75350 | georg.brandl | 2009-10-11 14:00:18 +0200 (So, 11 Okt 2009) | 1 line
      
        Use getopt in script.py demo.
      ........
        r75351 | georg.brandl | 2009-10-11 14:03:01 +0200 (So, 11 Okt 2009) | 1 line
      
        Fix variable.
      ........
        r75354 | georg.brandl | 2009-10-11 16:23:49 +0200 (So, 11 Okt 2009) | 1 line
      
        Update lpwatch script.
      ........
        r75356 | georg.brandl | 2009-10-11 16:49:37 +0200 (So, 11 Okt 2009) | 1 line
      
        Remove ftpstats script, the daemon whose log files it reads is long gone.
      ........
        r75358 | georg.brandl | 2009-10-11 17:06:44 +0200 (So, 11 Okt 2009) | 1 line
      
        Overhaul of Demo/xml.
      ........
      69b34234
    • Georg Brandl's avatar
      Merged revisions... · f004d9dc
      Georg Brandl authored
      Merged revisions 73206,73232,73299,73683,74020,74185,74544,74643,74647,74817,74838-74839,74865,74946,75402,75459,75604,75696 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r73206 | georg.brandl | 2009-06-04 11:15:12 +0200 (Do, 04 Jun 2009) | 1 line
      
        #3584: ignore trailing newlines when placing the caret for a SyntaxError location.
      ........
        r73232 | georg.brandl | 2009-06-04 20:59:58 +0200 (Do, 04 Jun 2009) | 1 line
      
        Add test for #3684.
      ........
        r73299 | georg.brandl | 2009-06-08 20:41:36 +0200 (Mo, 08 Jun 2009) | 1 line
      
        Typo fix.
      ........
        r73683 | georg.brandl | 2009-06-29 16:44:49 +0200 (Mo, 29 Jun 2009) | 1 line
      
        Fix error handling in PyCode_Optimize, by Alexander Schremmer at EuroPython sprint.
      ........
        r74020 | georg.brandl | 2009-07-16 09:18:07 +0200 (Do, 16 Jul 2009) | 1 line
      
        #5910: fix kqueue for calls with more than one event.
      ........
        r74185 | georg.brandl | 2009-07-23 11:17:09 +0200 (Do, 23 Jul 2009) | 1 line
      
        Fix the "pylocals" gdb command.
      ........
        r74544 | georg.brandl | 2009-08-24 19:12:30 +0200 (Mo, 24 Aug 2009) | 1 line
      
        #6775: fix python.org URLs in README.
      ........
        r74643 | georg.brandl | 2009-09-04 08:59:20 +0200 (Fr, 04 Sep 2009) | 2 lines
      
        Issue #2666: Handle BROWSER environment variable properly for unknown browser names in the webbrowser module.
      ........
        r74647 | georg.brandl | 2009-09-04 10:17:04 +0200 (Fr, 04 Sep 2009) | 2 lines
      
        Issue #5275: In Cookie's Cookie.load(), properly handle non-string arguments as documented.
      ........
        r74817 | georg.brandl | 2009-09-16 11:05:11 +0200 (Mi, 16 Sep 2009) | 1 line
      
        Make deprecation notices as visible as warnings are right now.
      ........
        r74838 | georg.brandl | 2009-09-16 18:22:12 +0200 (Mi, 16 Sep 2009) | 1 line
      
        Remove some more boilerplate from the actual tests in test_pdb.
      ........
        r74839 | georg.brandl | 2009-09-16 18:36:39 +0200 (Mi, 16 Sep 2009) | 1 line
      
        Make the pdb displayhook compatible with the standard displayhook: do not print Nones. Add a test for that.
      ........
        r74865 | georg.brandl | 2009-09-17 09:49:37 +0200 (Do, 17 Sep 2009) | 1 line
      
        #6912: add "with" block support to pindent.
      ........
        r74946 | georg.brandl | 2009-09-19 10:43:16 +0200 (Sa, 19 Sep 2009) | 1 line
      
        Update bug tracker reference.
      ........
        r75402 | georg.brandl | 2009-10-14 17:51:48 +0200 (Mi, 14 Okt 2009) | 1 line
      
        #7125: fix typo.
      ........
        r75459 | georg.brandl | 2009-10-17 10:57:43 +0200 (Sa, 17 Okt 2009) | 1 line
      
        Fix refleaks in _ctypes PyCSimpleType_New, which fixes the refleak seen in test___all__.
      ........
        r75604 | georg.brandl | 2009-10-22 13:36:50 +0200 (Do, 22 Okt 2009) | 1 line
      
        Fix stylesheet for multi-paragraph impl-details.
      ........
        r75696 | georg.brandl | 2009-10-25 21:25:43 +0100 (So, 25 Okt 2009) | 1 line
      
        Fix a demo.
      ........
      f004d9dc
    • Georg Brandl's avatar
      Merged revisions 75795 via svnmerge from · a7fef6aa
      Georg Brandl authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r75795 | georg.brandl | 2009-10-27 16:10:22 +0100 (Di, 27 Okt 2009) | 1 line
      
        Fix a strange mis-edit.
      ........
      a7fef6aa
    • Georg Brandl's avatar
      Merged revisions 75593 via svnmerge from · 9d084f98
      Georg Brandl authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r75593 | georg.brandl | 2009-10-22 09:06:49 +0200 (Do, 22 Okt 2009) | 1 line
      
        Revert unintended change.
      ........
      9d084f98
    • Georg Brandl's avatar
      Blocked revisions 75370-75372,75391,75551 via svnmerge · 02b30c50
      Georg Brandl authored
      ........
        r75370 | georg.brandl | 2009-10-11 23:10:07 +0200 (So, 11 Okt 2009) | 1 line
      
        Move find_recursionlimit.py to Tools/scripts; it is out of place in Misc.
      ........
        r75371 | georg.brandl | 2009-10-11 23:14:37 +0200 (So, 11 Okt 2009) | 1 line
      
        Add find_recursionlimit.py to README.
      ........
        r75372 | georg.brandl | 2009-10-11 23:17:14 +0200 (So, 11 Okt 2009) | 1 line
      
        Update Misc/README.
      ........
        r75391 | andrew.kuchling | 2009-10-13 17:49:33 +0200 (Di, 13 Okt 2009) | 1 line
      
        Link to PEP
      ........
        r75551 | benjamin.peterson | 2009-10-20 05:14:10 +0200 (Di, 20 Okt 2009) | 1 line
      
        use property api
      ........
      02b30c50
    • Georg Brandl's avatar
      Merged revisions... · 5d2eb34f
      Georg Brandl authored
      Merged revisions 75363,75365,75376,75392,75394,75403,75418,75484,75572,75580,75590,75592,75594-75596,75600,75602-75603,75605-75607,75610-75613,75616-75617,75623,75627,75647 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r75363 | georg.brandl | 2009-10-11 20:31:23 +0200 (So, 11 Okt 2009) | 1 line
      
        Add the Python FAQ lists to the documentation.  Copied from sandbox/faq.  Many thanks to AMK for the preparation work.
      ........
        r75365 | georg.brandl | 2009-10-11 22:16:16 +0200 (So, 11 Okt 2009) | 1 line
      
        Fix broken links found by "make linkcheck".  scipy.org seems to be done right now, so I could not verify links going there.
      ........
        r75376 | benjamin.peterson | 2009-10-12 03:26:07 +0200 (Mo, 12 Okt 2009) | 1 line
      
        platform we don't care about
      ........
        r75392 | andrew.kuchling | 2009-10-13 18:11:49 +0200 (Di, 13 Okt 2009) | 1 line
      
        Various link, textual, and markup fixes
      ........
        r75394 | georg.brandl | 2009-10-13 20:10:59 +0200 (Di, 13 Okt 2009) | 1 line
      
        Fix markup.
      ........
        r75403 | georg.brandl | 2009-10-14 17:57:46 +0200 (Mi, 14 Okt 2009) | 1 line
      
        #7126: os.environ changes *do* take effect in subprocesses started with os.system().
      ........
        r75418 | georg.brandl | 2009-10-14 20:48:32 +0200 (Mi, 14 Okt 2009) | 1 line
      
        #7116: str.join() takes an iterable.
      ........
        r75484 | georg.brandl | 2009-10-18 09:58:12 +0200 (So, 18 Okt 2009) | 1 line
      
        Fix missing word.
      ........
        r75572 | benjamin.peterson | 2009-10-20 23:55:17 +0200 (Di, 20 Okt 2009) | 1 line
      
        clarify buffer arg #7178
      ........
        r75580 | georg.brandl | 2009-10-21 09:15:59 +0200 (Mi, 21 Okt 2009) | 1 line
      
        #7170: fix explanation about non-weakrefable builtin types.
      ........
        r75590 | benjamin.peterson | 2009-10-22 04:36:47 +0200 (Do, 22 Okt 2009) | 1 line
      
        rewrite to be nice to other implementations
      ........
        r75592 | georg.brandl | 2009-10-22 09:05:48 +0200 (Do, 22 Okt 2009) | 1 line
      
        Fix punctuation.
      ........
        r75594 | georg.brandl | 2009-10-22 09:56:02 +0200 (Do, 22 Okt 2009) | 1 line
      
        Fix markup.
      ........
        r75595 | georg.brandl | 2009-10-22 09:56:56 +0200 (Do, 22 Okt 2009) | 1 line
      
        Fix duplicate target.
      ........
        r75596 | georg.brandl | 2009-10-22 10:05:04 +0200 (Do, 22 Okt 2009) | 1 line
      
        Add a new directive marking up implementation details and start using it.
      ........
        r75600 | georg.brandl | 2009-10-22 13:01:46 +0200 (Do, 22 Okt 2009) | 1 line
      
        Make it more robust.
      ........
        r75602 | georg.brandl | 2009-10-22 13:28:06 +0200 (Do, 22 Okt 2009) | 1 line
      
        Document new directive.
      ........
        r75603 | georg.brandl | 2009-10-22 13:28:23 +0200 (Do, 22 Okt 2009) | 1 line
      
        Allow short form with text as argument.
      ........
        r75605 | georg.brandl | 2009-10-22 13:48:10 +0200 (Do, 22 Okt 2009) | 1 line
      
        Use "impl-detail" directive where applicable.
      ........
        r75606 | georg.brandl | 2009-10-22 17:00:06 +0200 (Do, 22 Okt 2009) | 1 line
      
        #6324: membership test tries iteration via __iter__.
      ........
        r75607 | georg.brandl | 2009-10-22 17:04:09 +0200 (Do, 22 Okt 2009) | 1 line
      
        #7088: document new functions in signal as Unix-only.
      ........
        r75610 | georg.brandl | 2009-10-22 17:27:24 +0200 (Do, 22 Okt 2009) | 1 line
      
        Reorder __slots__ fine print and add a clarification.
      ........
        r75611 | georg.brandl | 2009-10-22 17:42:32 +0200 (Do, 22 Okt 2009) | 1 line
      
        #7035: improve docs of the various <method>_errors() functions, and give them docstrings.
      ........
        r75612 | georg.brandl | 2009-10-22 17:52:15 +0200 (Do, 22 Okt 2009) | 1 line
      
        #7156: document curses as Unix-only.
      ........
        r75613 | georg.brandl | 2009-10-22 17:54:35 +0200 (Do, 22 Okt 2009) | 1 line
      
        #6977: getopt does not support optional option arguments.
      ........
        r75616 | georg.brandl | 2009-10-22 18:17:05 +0200 (Do, 22 Okt 2009) | 1 line
      
        Add proper references.
      ........
        r75617 | georg.brandl | 2009-10-22 18:20:55 +0200 (Do, 22 Okt 2009) | 1 line
      
        Make printout margin important.
      ........
        r75623 | georg.brandl | 2009-10-23 10:14:44 +0200 (Fr, 23 Okt 2009) | 1 line
      
        #7188: fix optionxform() docs.
      ........
        r75627 | fred.drake | 2009-10-23 15:04:51 +0200 (Fr, 23 Okt 2009) | 2 lines
      
        add further note about what's passed to optionxform
      ........
        r75647 | georg.brandl | 2009-10-24 12:04:19 +0200 (Sa, 24 Okt 2009) | 1 line
      
        Fix markup.
      ........
      5d2eb34f