1. 16 Sep, 2009 3 commits
    • Georg Brandl's avatar
      Merged revisions 74821,74828-74831,74833,74835 via svnmerge from · b044b2a7
      Georg Brandl authored
      svn+ssh://svn.python.org/python/branches/py3k
      
      ................
        r74821 | georg.brandl | 2009-09-16 11:42:19 +0200 (Mi, 16 Sep 2009) | 1 line
      
        #6885: run python 3 as python3.
      ................
        r74828 | georg.brandl | 2009-09-16 16:23:20 +0200 (Mi, 16 Sep 2009) | 1 line
      
        Use true booleans.
      ................
        r74829 | georg.brandl | 2009-09-16 16:24:29 +0200 (Mi, 16 Sep 2009) | 1 line
      
        Small PEP8 correction.
      ................
        r74830 | georg.brandl | 2009-09-16 16:36:22 +0200 (Mi, 16 Sep 2009) | 1 line
      
        Use true booleans.
      ................
        r74831 | georg.brandl | 2009-09-16 17:54:04 +0200 (Mi, 16 Sep 2009) | 1 line
      
        Use true booleans and PEP8 for argdefaults.
      ................
        r74833 | georg.brandl | 2009-09-16 17:58:14 +0200 (Mi, 16 Sep 2009) | 1 line
      
        Last round of adapting style of documenting argument default values.
      ................
        r74835 | georg.brandl | 2009-09-16 18:00:31 +0200 (Mi, 16 Sep 2009) | 33 lines
      
        Merged revisions 74817-74820,74822-74824 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          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.
        ........
          r74818 | georg.brandl | 2009-09-16 11:23:04 +0200 (Mi, 16 Sep 2009) | 1 line
      
          #6880: add reference to classes section in exceptions section, which comes earlier.
        ........
          r74819 | georg.brandl | 2009-09-16 11:24:57 +0200 (Mi, 16 Sep 2009) | 1 line
      
          #6876: fix base class constructor invocation in example.
        ........
          r74820 | georg.brandl | 2009-09-16 11:30:48 +0200 (Mi, 16 Sep 2009) | 1 line
      
          #6891: comment out dead link to Unicode article.
        ........
          r74822 | georg.brandl | 2009-09-16 12:12:06 +0200 (Mi, 16 Sep 2009) | 1 line
      
          #5621: refactor description of how class/instance attributes interact on a.x=a.x+1 or augassign.
        ........
          r74823 | georg.brandl | 2009-09-16 15:06:22 +0200 (Mi, 16 Sep 2009) | 1 line
      
          Remove strange trailing commas.
        ........
          r74824 | georg.brandl | 2009-09-16 15:11:06 +0200 (Mi, 16 Sep 2009) | 1 line
      
          #6892: fix optparse example involving help option.
        ........
      ................
      b044b2a7
    • Ezio Melotti's avatar
      Merged revisions 74815 via svnmerge from · f4b4623a
      Ezio Melotti authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r74815 | ezio.melotti | 2009-09-16 04:18:27 +0300 (Wed, 16 Sep 2009) | 1 line
      
        #6910 - for->or typo
      ........
      f4b4623a
    • Ezio Melotti's avatar
      Merged revisions 74813 via svnmerge from · 1e112baf
      Ezio Melotti authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r74813 | ezio.melotti | 2009-09-16 03:49:03 +0300 (Wed, 16 Sep 2009) | 1 line
      
        updated the doc to match the module docstring, fixed a couple of errors in the doc markup and in the module
      ........
      1e112baf
  2. 15 Sep, 2009 4 commits
  3. 14 Sep, 2009 1 commit
  4. 13 Sep, 2009 7 commits
  5. 12 Sep, 2009 2 commits
    • Ezio Melotti's avatar
      Merged revisions 74748 via svnmerge from · 306afd30
      Ezio Melotti authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r74748 | ezio.melotti | 2009-09-12 04:52:05 +0300 (Sat, 12 Sep 2009) | 1 line
      
        d.items() -> list(d.items()) in the examples
      ........
      306afd30
    • Lars Gustäbel's avatar
      Blocked revisions 74751 via svnmerge · c32640de
      Lars Gustäbel authored
      ................
        r74751 | lars.gustaebel | 2009-09-12 12:44:00 +0200 (Sat, 12 Sep 2009) | 16 lines
      
        Merged revisions 74750 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r74750 | lars.gustaebel | 2009-09-12 12:28:15 +0200 (Sat, 12 Sep 2009) | 9 lines
      
          Issue #6856: Add a filter keyword argument to TarFile.add().
      
          The filter argument must be a function that takes a TarInfo
          object argument, changes it and returns it again. If the
          function returns None the TarInfo object will be excluded
          from the archive.
          The exclude argument is deprecated from now on, because it
          does something similar but is not as flexible.
        ........
      ................
      c32640de
  6. 11 Sep, 2009 2 commits
    • Benjamin Peterson's avatar
      Merged revisions 74745 via svnmerge from · a833206d
      Benjamin Peterson authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ................
        r74745 | benjamin.peterson | 2009-09-11 17:24:02 -0500 (Fri, 11 Sep 2009) | 98 lines
      
        Merged revisions 74277,74321,74323,74326,74355,74465,74467,74488,74492,74513,74531,74549,74553,74625,74632,74643-74644,74647,74652,74666,74671,74727,74739 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r74277 | sean.reifschneider | 2009-08-01 18:54:55 -0500 (Sat, 01 Aug 2009) | 3 lines
      
          - Issue #6624: yArg_ParseTuple with "s" format when parsing argument with
            NUL: Bogus TypeError detail string.
        ........
          r74321 | guilherme.polo | 2009-08-05 11:51:41 -0500 (Wed, 05 Aug 2009) | 1 line
      
          Easier reference to find (at least while svn continues being used).
        ........
          r74323 | guilherme.polo | 2009-08-05 18:48:26 -0500 (Wed, 05 Aug 2009) | 1 line
      
          Typo.
        ........
          r74326 | jesse.noller | 2009-08-05 21:05:56 -0500 (Wed, 05 Aug 2009) | 1 line
      
          Fix issue 4660: spurious task_done errors in multiprocessing, remove doc note for from_address
        ........
          r74355 | gregory.p.smith | 2009-08-12 12:02:37 -0500 (Wed, 12 Aug 2009) | 2 lines
      
          comment typo fix
        ........
          r74465 | vinay.sajip | 2009-08-15 18:23:12 -0500 (Sat, 15 Aug 2009) | 1 line
      
          Added section on logging to one file from multiple processes.
        ........
          r74467 | vinay.sajip | 2009-08-15 18:34:47 -0500 (Sat, 15 Aug 2009) | 1 line
      
          Refined section on logging to one file from multiple processes.
        ........
          r74488 | vinay.sajip | 2009-08-17 08:14:37 -0500 (Mon, 17 Aug 2009) | 1 line
      
          Further refined section on logging to one file from multiple processes.
        ........
          r74492 | r.david.murray | 2009-08-17 14:26:49 -0500 (Mon, 17 Aug 2009) | 2 lines
      
          Issue 6685: 'toupper' -> 'upper' in cgi doc example explanation.
        ........
          r74513 | skip.montanaro | 2009-08-18 09:37:52 -0500 (Tue, 18 Aug 2009) | 1 line
      
          missing module ref (issue6723)
        ........
          r74531 | vinay.sajip | 2009-08-20 17:04:32 -0500 (Thu, 20 Aug 2009) | 1 line
      
          Added section on exceptions raised during logging.
        ........
          r74549 | benjamin.peterson | 2009-08-24 12:42:36 -0500 (Mon, 24 Aug 2009) | 1 line
      
          fix pdf building by teaching latex the right encoding package
        ........
          r74553 | r.david.murray | 2009-08-26 20:04:59 -0500 (Wed, 26 Aug 2009) | 2 lines
      
          Remove leftover text from end of sentence.
        ........
          r74625 | benjamin.peterson | 2009-09-01 17:27:57 -0500 (Tue, 01 Sep 2009) | 1 line
      
          remove the check that classmethod's argument is a callable
        ........
          r74632 | georg.brandl | 2009-09-03 02:27:26 -0500 (Thu, 03 Sep 2009) | 1 line
      
          #6828: fix wrongly highlighted blocks.
        ........
          r74643 | georg.brandl | 2009-09-04 01:59:20 -0500 (Fri, 04 Sep 2009) | 2 lines
      
          Issue #2666: Handle BROWSER environment variable properly for unknown browser names in the webbrowser module.
        ........
          r74644 | georg.brandl | 2009-09-04 02:55:14 -0500 (Fri, 04 Sep 2009) | 1 line
      
          #5047: remove Monterey support from configure.
        ........
          r74647 | georg.brandl | 2009-09-04 03:17:04 -0500 (Fri, 04 Sep 2009) | 2 lines
      
          Issue #5275: In Cookie's Cookie.load(), properly handle non-string arguments as documented.
        ........
          r74652 | georg.brandl | 2009-09-04 06:25:37 -0500 (Fri, 04 Sep 2009) | 1 line
      
          #6756: add some info about the "acct" parameter.
        ........
          r74666 | georg.brandl | 2009-09-05 04:04:09 -0500 (Sat, 05 Sep 2009) | 1 line
      
          #6841: remove duplicated word.
        ........
          r74671 | georg.brandl | 2009-09-05 11:47:17 -0500 (Sat, 05 Sep 2009) | 1 line
      
          #6843: add link from filterwarnings to where the meaning of the arguments is covered.
        ........
          r74727 | benjamin.peterson | 2009-09-08 18:04:22 -0500 (Tue, 08 Sep 2009) | 1 line
      
          #6865 fix ref counting in initialization of pwd module
        ........
          r74739 | georg.brandl | 2009-09-11 02:55:20 -0500 (Fri, 11 Sep 2009) | 1 line
      
          Move function back to its section.
        ........
      ................
      a833206d
    • Benjamin Peterson's avatar
      Merged revisions 74741 via svnmerge from · 14f9f7df
      Benjamin Peterson authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r74741 | benjamin.peterson | 2009-09-11 16:17:13 -0500 (Fri, 11 Sep 2009) | 1 line
      
        #6888 fix the alias command with no arguments
      ........
      14f9f7df
  7. 09 Sep, 2009 1 commit
  8. 08 Sep, 2009 4 commits
  9. 07 Sep, 2009 2 commits
  10. 06 Sep, 2009 6 commits
  11. 05 Sep, 2009 1 commit
  12. 04 Sep, 2009 3 commits
  13. 03 Sep, 2009 1 commit
  14. 01 Sep, 2009 1 commit
    • Georg Brandl's avatar
      Merged revisions 74613,74615,74619-74620,74622 via svnmerge from · 7baf625b
      Georg Brandl authored
      svn+ssh://svn.python.org/python/branches/py3k
      
      ................
        r74613 | georg.brandl | 2009-09-01 09:34:27 +0200 (Di, 01 Sep 2009) | 1 line
      
        #6814: remove traces of xrange().
      ................
        r74615 | georg.brandl | 2009-09-01 09:42:40 +0200 (Di, 01 Sep 2009) | 9 lines
      
        Recorded merge of revisions 74614 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r74614 | georg.brandl | 2009-09-01 09:40:54 +0200 (Di, 01 Sep 2009) | 1 line
      
          #6813: better documentation for numberless string formats.
        ........
      ................
        r74619 | georg.brandl | 2009-09-01 10:02:03 +0200 (Di, 01 Sep 2009) | 1 line
      
        #6754: remove old struct member nb_inplace_divide.
      ................
        r74620 | georg.brandl | 2009-09-01 10:03:26 +0200 (Di, 01 Sep 2009) | 1 line
      
        #6732: fix return value of module init function in example.
      ................
        r74622 | georg.brandl | 2009-09-01 10:11:14 +0200 (Di, 01 Sep 2009) | 73 lines
      
        Merged revisions 74542,74544-74548,74550,74554-74555,74578,74588,74590,74603,74616-74618,74621 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r74542 | georg.brandl | 2009-08-23 23:28:56 +0200 (So, 23 Aug 2009) | 1 line
      
          Restore alphabetic order.
        ........
          r74544 | georg.brandl | 2009-08-24 19:12:30 +0200 (Mo, 24 Aug 2009) | 1 line
      
          #6775: fix python.org URLs in README.
        ........
          r74545 | georg.brandl | 2009-08-24 19:14:29 +0200 (Mo, 24 Aug 2009) | 1 line
      
          #6772: mention utf-8 as utf8 alias.
        ........
          r74546 | georg.brandl | 2009-08-24 19:20:40 +0200 (Mo, 24 Aug 2009) | 1 line
      
          #6725: spell "namespace" consistently.
        ........
          r74547 | georg.brandl | 2009-08-24 19:22:05 +0200 (Mo, 24 Aug 2009) | 1 line
      
          #6718: fix example.
        ........
          r74548 | georg.brandl | 2009-08-24 19:24:27 +0200 (Mo, 24 Aug 2009) | 1 line
      
          #6677: mention "deleting" as an alias for removing files.
        ........
          r74550 | georg.brandl | 2009-08-24 19:48:40 +0200 (Mo, 24 Aug 2009) | 1 line
      
          #6677: note that rmdir only removes empty directories.
        ........
          r74554 | georg.brandl | 2009-08-27 20:59:02 +0200 (Do, 27 Aug 2009) | 1 line
      
          Typo fix.
        ........
          r74555 | georg.brandl | 2009-08-27 21:02:43 +0200 (Do, 27 Aug 2009) | 1 line
      
          #6787: reference fix.
        ........
          r74578 | tarek.ziade | 2009-08-29 15:33:21 +0200 (Sa, 29 Aug 2009) | 1 line
      
          fixed #6801: symmetric_difference_update also accepts pipe
        ........
          r74588 | georg.brandl | 2009-08-30 10:35:01 +0200 (So, 30 Aug 2009) | 1 line
      
          #6803: fix old name.
        ........
          r74590 | georg.brandl | 2009-08-30 13:51:53 +0200 (So, 30 Aug 2009) | 1 line
      
          #6801: fix copy-paste oversight.
        ........
          r74603 | georg.brandl | 2009-08-31 08:38:29 +0200 (Mo, 31 Aug 2009) | 1 line
      
          other -> others where multiple arguments are accepted.
        ........
          r74616 | georg.brandl | 2009-09-01 09:46:26 +0200 (Di, 01 Sep 2009) | 1 line
      
          #6808: clarification.
        ........
          r74617 | georg.brandl | 2009-09-01 09:53:37 +0200 (Di, 01 Sep 2009) | 1 line
      
          #6765: hint that log(x, base) is not very sophisticated.
        ........
          r74618 | georg.brandl | 2009-09-01 10:00:47 +0200 (Di, 01 Sep 2009) | 1 line
      
          #6810: add a link to the section about frame objects instead of just a description where to find it.
        ........
          r74621 | georg.brandl | 2009-09-01 10:06:03 +0200 (Di, 01 Sep 2009) | 1 line
      
          #6638: fix wrong parameter name and markup a class.
        ........
      ................
      7baf625b
  15. 31 Aug, 2009 1 commit
  16. 30 Aug, 2009 1 commit