An error occurred fetching the project authors.
  1. 29 Jul, 2011 1 commit
  2. 15 Jul, 2011 2 commits
  3. 30 Jun, 2011 1 commit
  4. 20 May, 2011 1 commit
  5. 28 Apr, 2011 1 commit
  6. 25 Mar, 2011 1 commit
  7. 30 Jan, 2011 1 commit
  8. 03 Dec, 2010 3 commits
  9. 18 Nov, 2010 2 commits
    • Alexander Belopolsky's avatar
      Merged revisions 86504 via svnmerge from · 4979b9b9
      Alexander Belopolsky authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r86504 | alexander.belopolsky | 2010-11-17 20:52:54 -0500 (Wed, 17 Nov 2010) | 15 lines
      
        Issue #10446: Several changes to module documentation generated by pydoc:
      
        1. Online reference manual link is now version-specific and the
           'MODULE DOCS' section renamed to 'MODULE REFERENCE'.
      
        2. 'FILE' section is moved to the end of the file.
      
        3. Special names processed by pydoc such as __version__ or __credits__
           are now excluded from the DATA section.
      
        4. Defined __all__ to prevent pydoc from exposing undocumented details
           about itself.
      
        5. Removed Python 2.3 compatibility code.
      ........
      4979b9b9
    • Alexander Belopolsky's avatar
      Issue #10446: Several changes to module documentation generated by pydoc: · a47bbf5a
      Alexander Belopolsky authored
      1. Online reference manual link is now version-specific and the
         'MODULE DOCS' section renamed to 'MODULE REFERENCE'.
      
      2. 'FILE' section is moved to the end of the file.
      
      3. Special names processed by pydoc such as __version__ or __credits__
         are now excluded from the DATA section.
      
      4. Defined __all__ to prevent pydoc from exposing undocumented details
         about itself.
      
      5. Removed Python 2.3 compatibility code.
      a47bbf5a
  10. 17 Apr, 2010 1 commit
  11. 31 Mar, 2010 2 commits
  12. 06 Mar, 2010 1 commit
  13. 24 Feb, 2010 1 commit
  14. 16 Feb, 2010 2 commits
  15. 19 Jan, 2010 1 commit
  16. 30 Oct, 2009 1 commit
  17. 13 Aug, 2009 1 commit
  18. 30 Jun, 2009 1 commit
  19. 28 Jun, 2009 2 commits
    • Benjamin Peterson's avatar
      Merged revisions 73623-73624 via svnmerge from · d76c8da0
      Benjamin Peterson authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ................
        r73623 | benjamin.peterson | 2009-06-28 12:22:03 -0500 (Sun, 28 Jun 2009) | 58 lines
      
        Merged revisions 73004,73439,73496,73509,73529,73564,73576-73577,73595-73596,73605 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r73004 | jeffrey.yasskin | 2009-05-28 22:44:31 -0500 (Thu, 28 May 2009) | 5 lines
      
          Fix nearly all compilation warnings under Apple gcc-4.0.  Tested with OPT="-g
          -Wall -Wstrict-prototypes -Werror" in both --with-pydebug mode and --without.
          There's still a batch of non-prototype warnings in Xlib.h that I don't know how
          to fix.
        ........
          r73439 | benjamin.peterson | 2009-06-15 19:29:31 -0500 (Mon, 15 Jun 2009) | 1 line
      
          don't mask encoding errors when decoding a string #6289
        ........
          r73496 | vinay.sajip | 2009-06-21 12:37:27 -0500 (Sun, 21 Jun 2009) | 1 line
      
          Issue #6314: logging.basicConfig() performs extra checks on the "level" argument.
        ........
          r73509 | amaury.forgeotdarc | 2009-06-22 14:33:48 -0500 (Mon, 22 Jun 2009) | 2 lines
      
          #4490 Fix sample code run by "python -m xml.sax.xmlreader"
        ........
          r73529 | r.david.murray | 2009-06-23 13:02:46 -0500 (Tue, 23 Jun 2009) | 4 lines
      
          Fix issue 5230 by having pydoc's safeimport check to see if the import
          error was thrown from itself in order to decide if the module can't be
          found.  Thanks to Lucas Prado Melo for collaborating on the fix and tests.
        ........
          r73564 | amaury.forgeotdarc | 2009-06-25 17:29:29 -0500 (Thu, 25 Jun 2009) | 6 lines
      
          #2016 Fix a crash in function call when the **kwargs dictionary is mutated
          during the function call setup.
      
          This even gives a slight speedup, probably because tuple allocation
          is faster than PyMem_NEW.
        ........
          r73576 | benjamin.peterson | 2009-06-26 18:37:06 -0500 (Fri, 26 Jun 2009) | 1 line
      
          document is_declared_global()
        ........
          r73577 | benjamin.peterson | 2009-06-27 09:16:23 -0500 (Sat, 27 Jun 2009) | 1 line
      
          link to extensive generator docs in the reference manual
        ........
          r73595 | ezio.melotti | 2009-06-27 18:45:39 -0500 (Sat, 27 Jun 2009) | 1 line
      
          stmt and setup can contain multiple statements, see #5896
        ........
          r73596 | ezio.melotti | 2009-06-27 19:07:45 -0500 (Sat, 27 Jun 2009) | 1 line
      
          Fixed a wrong apostrophe
        ........
          r73605 | georg.brandl | 2009-06-28 07:10:18 -0500 (Sun, 28 Jun 2009) | 1 line
      
          Remove stray pychecker directive.
        ........
      ................
        r73624 | benjamin.peterson | 2009-06-28 12:32:20 -0500 (Sun, 28 Jun 2009) | 1 line
      
        document BufferedIOBase.raw and TextIOBase.buffer
      ................
      d76c8da0
    • Benjamin Peterson's avatar
      Merged revisions... · 0289b158
      Benjamin Peterson authored
      Merged revisions 73004,73439,73496,73509,73529,73564,73576-73577,73595-73596,73605 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r73004 | jeffrey.yasskin | 2009-05-28 22:44:31 -0500 (Thu, 28 May 2009) | 5 lines
      
        Fix nearly all compilation warnings under Apple gcc-4.0.  Tested with OPT="-g
        -Wall -Wstrict-prototypes -Werror" in both --with-pydebug mode and --without.
        There's still a batch of non-prototype warnings in Xlib.h that I don't know how
        to fix.
      ........
        r73439 | benjamin.peterson | 2009-06-15 19:29:31 -0500 (Mon, 15 Jun 2009) | 1 line
      
        don't mask encoding errors when decoding a string #6289
      ........
        r73496 | vinay.sajip | 2009-06-21 12:37:27 -0500 (Sun, 21 Jun 2009) | 1 line
      
        Issue #6314: logging.basicConfig() performs extra checks on the "level" argument.
      ........
        r73509 | amaury.forgeotdarc | 2009-06-22 14:33:48 -0500 (Mon, 22 Jun 2009) | 2 lines
      
        #4490 Fix sample code run by "python -m xml.sax.xmlreader"
      ........
        r73529 | r.david.murray | 2009-06-23 13:02:46 -0500 (Tue, 23 Jun 2009) | 4 lines
      
        Fix issue 5230 by having pydoc's safeimport check to see if the import
        error was thrown from itself in order to decide if the module can't be
        found.  Thanks to Lucas Prado Melo for collaborating on the fix and tests.
      ........
        r73564 | amaury.forgeotdarc | 2009-06-25 17:29:29 -0500 (Thu, 25 Jun 2009) | 6 lines
      
        #2016 Fix a crash in function call when the **kwargs dictionary is mutated
        during the function call setup.
      
        This even gives a slight speedup, probably because tuple allocation
        is faster than PyMem_NEW.
      ........
        r73576 | benjamin.peterson | 2009-06-26 18:37:06 -0500 (Fri, 26 Jun 2009) | 1 line
      
        document is_declared_global()
      ........
        r73577 | benjamin.peterson | 2009-06-27 09:16:23 -0500 (Sat, 27 Jun 2009) | 1 line
      
        link to extensive generator docs in the reference manual
      ........
        r73595 | ezio.melotti | 2009-06-27 18:45:39 -0500 (Sat, 27 Jun 2009) | 1 line
      
        stmt and setup can contain multiple statements, see #5896
      ........
        r73596 | ezio.melotti | 2009-06-27 19:07:45 -0500 (Sat, 27 Jun 2009) | 1 line
      
        Fixed a wrong apostrophe
      ........
        r73605 | georg.brandl | 2009-06-28 07:10:18 -0500 (Sun, 28 Jun 2009) | 1 line
      
        Remove stray pychecker directive.
      ........
      0289b158
  20. 27 May, 2009 1 commit
  21. 02 Jul, 2008 1 commit
    • Benjamin Peterson's avatar
      Merged revisions... · 41181743
      Benjamin Peterson authored
      Merged revisions 64475,64544-64545,64550,64557-64558,64565,64570,64577,64582-64583,64585,64590,64592-64593,64625,64630,64638,64647,64655-64656,64663-64664 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r64475 | raymond.hettinger | 2008-06-22 22:29:28 -0500 (Sun, 22 Jun 2008) | 1 line
      
        Issue 3161: Missing import and test.
      ........
        r64544 | georg.brandl | 2008-06-26 16:12:55 -0500 (Thu, 26 Jun 2008) | 2 lines
      
        Use newer versions of externals.
      ........
        r64545 | benjamin.peterson | 2008-06-26 16:23:30 -0500 (Thu, 26 Jun 2008) | 1 line
      
        add a htmlview directive
      ........
        r64550 | brett.cannon | 2008-06-26 19:32:16 -0500 (Thu, 26 Jun 2008) | 2 lines
      
        Ignore .pyc and .pyo files.
      ........
        r64557 | mark.dickinson | 2008-06-27 05:11:52 -0500 (Fri, 27 Jun 2008) | 3 lines
      
        Remove trailing 'L's from numerator and denominator in the
        repr() of a Fraction instance.
      ........
        r64558 | mark.dickinson | 2008-06-27 06:03:21 -0500 (Fri, 27 Jun 2008) | 2 lines
      
        Add Jean Brouwers for his work on math.sum
      ........
        r64565 | raymond.hettinger | 2008-06-27 16:34:24 -0500 (Fri, 27 Jun 2008) | 1 line
      
        Fix whitespace in example code.
      ........
        r64570 | hyeshik.chang | 2008-06-27 20:04:31 -0500 (Fri, 27 Jun 2008) | 8 lines
      
        Give information for compililation of _multiprocessing.SemLock on FreeBSD:
      
        FreeBSD's P1003.1b semaphore support is highly experimental and
        it's disabled by default.  Even if a user loads the experimental
        kernel module manually, _multiprocessing doesn't work correctly due
        to several known incompatibilities around sem_unlink and sem_getvalue,
        yet.
      ........
        r64577 | raymond.hettinger | 2008-06-28 17:16:53 -0500 (Sat, 28 Jun 2008) | 1 line
      
        Issue 3230:  Do not the set specific size macro.
      ........
        r64582 | benjamin.peterson | 2008-06-28 18:06:05 -0500 (Sat, 28 Jun 2008) | 2 lines
      
        convert test_audioop to unittest. Thanks to Giampaolo Rodola.
      ........
        r64583 | benjamin.peterson | 2008-06-28 18:06:49 -0500 (Sat, 28 Jun 2008) | 1 line
      
        rewrap
      ........
        r64585 | benjamin.peterson | 2008-06-28 18:35:31 -0500 (Sat, 28 Jun 2008) | 1 line
      
        fix typo
      ........
        r64590 | benjamin.peterson | 2008-06-29 08:43:07 -0500 (Sun, 29 Jun 2008) | 1 line
      
        reinstate the ending backtick. thanks Nick :)
      ........
        r64592 | vinay.sajip | 2008-06-29 16:25:28 -0500 (Sun, 29 Jun 2008) | 2 lines
      
        Removed out-of-date comment in _install_handlers and
        used issubclass in place of equality comparison of classes.
      ........
        r64593 | vinay.sajip | 2008-06-29 16:27:15 -0500 (Sun, 29 Jun 2008) | 1 line
      
        Updated to reflect change in logging.config to remove out-of-date comment in _install_handlers and the use of issubclass in place of equality comparison of classes.
      ........
        r64625 | georg.brandl | 2008-07-01 14:59:00 -0500 (Tue, 01 Jul 2008) | 2 lines
      
        Add a link to PEP 324.
      ........
        r64630 | georg.brandl | 2008-07-01 15:18:10 -0500 (Tue, 01 Jul 2008) | 2 lines
      
        #3216: fix Execute's parameter description.
      ........
        r64638 | georg.brandl | 2008-07-01 15:50:02 -0500 (Tue, 01 Jul 2008) | 2 lines
      
        #1410739: add a footnote about "is" and "unusual" behavior.
      ........
        r64647 | benjamin.peterson | 2008-07-01 18:33:06 -0500 (Tue, 01 Jul 2008) | 1 line
      
        add ABC to the glossary
      ........
        r64655 | mark.dickinson | 2008-07-02 04:37:01 -0500 (Wed, 02 Jul 2008) | 7 lines
      
        Replace occurrences of '\d' with '[0-9]' in Decimal regex, to make sure
        that the behaviour of Decimal doesn't change if/when re.UNICODE becomes
        assumed in Python 3.0.
      
        Also add a check that alternative Unicode digits (e.g. u'\N{FULLWIDTH
        DIGIT ONE}') are *not* accepted in a numeric string.
      ........
        r64656 | nick.coghlan | 2008-07-02 08:09:19 -0500 (Wed, 02 Jul 2008) | 1 line
      
        Issue 3190: pydoc now hides module __package__ attributes
      ........
        r64663 | jesse.noller | 2008-07-02 11:44:09 -0500 (Wed, 02 Jul 2008) | 1 line
      
        Reenable the manager tests with Amaury's threading fix
      ........
        r64664 | facundo.batista | 2008-07-02 11:52:55 -0500 (Wed, 02 Jul 2008) | 4 lines
      
      
        Issue #449227: Now with the rlcompleter module, callable objects are
        added a '(' when completed.
      ........
      41181743
  22. 14 Jun, 2008 1 commit
  23. 25 May, 2008 1 commit
    • Georg Brandl's avatar
      Merged revisions... · b533e26d
      Georg Brandl authored
      Merged revisions 63412,63445-63447,63449-63450,63452,63454,63459,63463,63465,63470,63483-63484,63496-63497,63499-63501,63530-63531,63540,63614 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r63412 | georg.brandl | 2008-05-17 19:57:01 +0200 (Sat, 17 May 2008) | 2 lines
      
        #961805: fix Edit.text_modified().
      ........
        r63445 | georg.brandl | 2008-05-18 10:52:59 +0200 (Sun, 18 May 2008) | 2 lines
      
        GHOP #180 by Michael Schneider: add examples to the socketserver documentation.
      ........
        r63446 | georg.brandl | 2008-05-18 11:12:20 +0200 (Sun, 18 May 2008) | 2 lines
      
        GHOP #134, #171, #137: unit tests for the three HTTPServer modules.
      ........
        r63447 | georg.brandl | 2008-05-18 12:39:26 +0200 (Sun, 18 May 2008) | 3 lines
      
        Take namedtuple item names only from ascii_letters (this blew up on OSX),
        and make sure there are no duplicate names.
      ........
        r63449 | georg.brandl | 2008-05-18 13:46:51 +0200 (Sun, 18 May 2008) | 2 lines
      
        GHOP #217: add support for compiling Python with coverage checking enabled.
      ........
        r63450 | georg.brandl | 2008-05-18 13:52:36 +0200 (Sun, 18 May 2008) | 2 lines
      
        GHOP #257: test distutils' build_ext command, written by Josip Dzolonga.
      ........
        r63452 | georg.brandl | 2008-05-18 15:34:06 +0200 (Sun, 18 May 2008) | 2 lines
      
        Add GHOP students.
      ........
        r63454 | georg.brandl | 2008-05-18 18:32:48 +0200 (Sun, 18 May 2008) | 2 lines
      
        GHOP #121: improve test_pydoc, by Benjamin Peterson.
      ........
        r63459 | benjamin.peterson | 2008-05-18 22:48:07 +0200 (Sun, 18 May 2008) | 2 lines
      
        bring test_pydoc up to my high standards (now that I have them)
      ........
        r63463 | georg.brandl | 2008-05-18 23:10:19 +0200 (Sun, 18 May 2008) | 2 lines
      
        Fix test_pyclbr after another platform-dependent function was added to urllib.
      ........
        r63465 | benjamin.peterson | 2008-05-19 01:07:07 +0200 (Mon, 19 May 2008) | 2 lines
      
        change some imports in tests so they will not be skipped in 3.0
      ........
        r63470 | georg.brandl | 2008-05-19 18:47:25 +0200 (Mon, 19 May 2008) | 2 lines
      
        test_httpservers has unpredictable refcount behavior.
      ........
        r63483 | georg.brandl | 2008-05-20 08:15:36 +0200 (Tue, 20 May 2008) | 2 lines
      
        Activate two more test cases in test_httpservers.
      ........
        r63484 | georg.brandl | 2008-05-20 08:47:31 +0200 (Tue, 20 May 2008) | 2 lines
      
        Argh, this is the *actual* test that works under Windows.
      ........
        r63496 | georg.brandl | 2008-05-20 10:07:36 +0200 (Tue, 20 May 2008) | 2 lines
      
        Improve diffing logic and output for test_pydoc.
      ........
        r63497 | georg.brandl | 2008-05-20 10:10:03 +0200 (Tue, 20 May 2008) | 2 lines
      
        Use inspect.getabsfile() to get the documented module's filename.
      ........
        r63499 | georg.brandl | 2008-05-20 10:25:48 +0200 (Tue, 20 May 2008) | 3 lines
      
        Patch #1775025: allow opening zipfile members via ZipInfo instances.
        Patch by Graham Horler.
      ........
        r63500 | georg.brandl | 2008-05-20 10:40:43 +0200 (Tue, 20 May 2008) | 2 lines
      
        #2592: delegate nb_index and the floor/truediv slots in weakref.proxy.
      ........
        r63501 | georg.brandl | 2008-05-20 10:48:34 +0200 (Tue, 20 May 2008) | 2 lines
      
        #615772: raise a more explicit error from Tkinter.Misc.__contains__.
      ........
        r63530 | benjamin.peterson | 2008-05-22 02:57:02 +0200 (Thu, 22 May 2008) | 2 lines
      
        use more specific asserts in test_opcode
      ........
        r63531 | benjamin.peterson | 2008-05-22 03:02:23 +0200 (Thu, 22 May 2008) | 2 lines
      
        remove redundant invocation of json doctests
      ........
        r63540 | benjamin.peterson | 2008-05-23 01:09:26 +0200 (Fri, 23 May 2008) | 3 lines
      
        fix test_pydoc so it works on make installed Python installations
        Also let it pass when invoked directly
      ........
        r63614 | georg.brandl | 2008-05-25 10:07:37 +0200 (Sun, 25 May 2008) | 2 lines
      
        #2959: allow multiple close() calls for GzipFile.
      ........
      b533e26d
  24. 20 May, 2008 1 commit
  25. 24 Apr, 2008 2 commits