1. 20 Ara, 2018 1 kayıt (commit)
    • Serhiy Storchaka's avatar
      bpo-18085: Update refcounts.dat. (GH-11247) · 83dd4e87
      Serhiy Storchaka yazdı
      Fixed some errors in refcounts.dat, remove functions removed in
      Python 3, and add more entries for documented functions. This will
      add several automatically generated notes about return values.
      83dd4e87
  2. 19 Ara, 2018 1 kayıt (commit)
  3. 17 Ara, 2018 1 kayıt (commit)
  4. 22 May, 2018 2 kayıt (commit)
  5. 24 Ock, 2018 1 kayıt (commit)
    • Paul Ganssle's avatar
      bpo-10381: Add timezone to datetime C API (#5032) · 04af5b1b
      Paul Ganssle yazdı
      * Add timezone to datetime C API
      
      * Add documentation for timezone C API macros
      
      * Add dedicated tests for datetime type check macros
      
      * Remove superfluous C API test
      
      * Drop support for TimeZoneType in datetime C API
      
      * Expose UTC singleton to the datetime C API
      
      * Update datetime C-API documentation to include links
      
      * Add reference count information for timezone constructors
      04af5b1b
  6. 01 Haz, 2017 1 kayıt (commit)
  7. 09 Haz, 2016 1 kayıt (commit)
  8. 22 Haz, 2015 1 kayıt (commit)
    • Yury Selivanov's avatar
      Issue #24400: Introduce a distinct type for 'async def' coroutines. · 5376ba96
      Yury Selivanov yazdı
      Summary of changes:
      
      1. Coroutines now have a distinct, separate from generators
         type at the C level: PyGen_Type, and a new typedef PyCoroObject.
         PyCoroObject shares the initial segment of struct layout with
         PyGenObject, making it possible to reuse existing generators
         machinery.  The new type is exposed as 'types.CoroutineType'.
      
         As a consequence of having a new type, CO_GENERATOR flag is
         no longer applied to coroutines.
      
      2. Having a separate type for coroutines made it possible to add
         an __await__ method to the type.  Although it is not used by the
         interpreter (see details on that below), it makes coroutines
         naturally (without using __instancecheck__) conform to
         collections.abc.Coroutine and collections.abc.Awaitable ABCs.
      
         [The __instancecheck__ is still used for generator-based
         coroutines, as we don't want to add __await__ for generators.]
      
      3. Add new opcode: GET_YIELD_FROM_ITER.  The opcode is needed to
         allow passing native coroutines to the YIELD_FROM opcode.
      
         Before this change, 'yield from o' expression was compiled to:
      
            (o)
            GET_ITER
            LOAD_CONST
            YIELD_FROM
      
         Now, we use GET_YIELD_FROM_ITER instead of GET_ITER.
      
         The reason for adding a new opcode is that GET_ITER is used
         in some contexts (such as 'for .. in' loops) where passing
         a coroutine object is invalid.
      
      4. Add two new introspection functions to the inspec module:
         getcoroutinestate(c) and getcoroutinelocals(c).
      
      5. inspect.iscoroutine(o) is updated to test if 'o' is a native
         coroutine object.  Before this commit it used abc.Coroutine,
         and it was requested to update inspect.isgenerator(o) to use
         abc.Generator; it was decided, however, that inspect functions
         should really be tailored for checking for native types.
      
      6. sys.set_coroutine_wrapper(w) API is updated to work with only
         native coroutines.  Since types.coroutine decorator supports
         any type of callables now, it would be confusing that it does
         not work for all types of coroutines.
      
      7. Exceptions logic in generators C implementation was updated
         to raise clearer messages for coroutines:
      
         Before: TypeError("generator raised StopIteration")
         After: TypeError("coroutine raised StopIteration")
      5376ba96
  9. 30 Eyl, 2014 1 kayıt (commit)
  10. 10 Şub, 2014 2 kayıt (commit)
  11. 19 Eki, 2013 1 kayıt (commit)
  12. 11 Tem, 2013 1 kayıt (commit)
  13. 28 May, 2013 1 kayıt (commit)
  14. 29 May, 2013 1 kayıt (commit)
  15. 08 Mar, 2013 1 kayıt (commit)
  16. 31 Eki, 2012 1 kayıt (commit)
  17. 25 Kas, 2011 1 kayıt (commit)
  18. 23 Eki, 2011 3 kayıt (commit)
  19. 21 Eki, 2010 1 kayıt (commit)
  20. 17 Eki, 2010 1 kayıt (commit)
  21. 27 Haz, 2010 1 kayıt (commit)
  22. 18 May, 2010 1 kayıt (commit)
    • Georg Brandl's avatar
      Merged revisions 79579-79580,79585-79587 via svnmerge from · 324086f1
      Georg Brandl yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r79579 | georg.brandl | 2010-04-02 08:34:41 +0000 (Fr, 02 Apr 2010) | 1 line
      
        Add 2.6.5.
      ........
        r79580 | georg.brandl | 2010-04-02 08:39:09 +0000 (Fr, 02 Apr 2010) | 1 line
      
        #2768: add a note on how to get a file descriptor.
      ........
        r79585 | georg.brandl | 2010-04-02 09:03:18 +0000 (Fr, 02 Apr 2010) | 1 line
      
        Remove col-spanning cells in logging docs.
      ........
        r79586 | georg.brandl | 2010-04-02 09:07:42 +0000 (Fr, 02 Apr 2010) | 1 line
      
        Document PyImport_ExecCodeModuleEx().
      ........
        r79587 | georg.brandl | 2010-04-02 09:11:49 +0000 (Fr, 02 Apr 2010) | 1 line
      
        #8012: clarification in generator glossary entry.
      ........
      324086f1
  23. 11 Nis, 2010 1 kayıt (commit)
    • Benjamin Peterson's avatar
      Merged revisions… · 08bf91c0
      Benjamin Peterson yazdı
      Merged revisions 79307,79408,79430,79533,79542,79579-79580,79585-79587,79607-79608,79622,79717,79820,79822,79828,79862,79875,79923-79924,79941-79943,79945,79947,79951-79952 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r79307 | florent.xicluna | 2010-03-22 17:45:50 -0500 (Mon, 22 Mar 2010) | 2 lines
      
        #7667: Fix doctest failures with non-ASCII paths.
      ........
        r79408 | victor.stinner | 2010-03-24 20:18:38 -0500 (Wed, 24 Mar 2010) | 2 lines
      
        Fix a gcc warning introduced by r79397.
      ........
        r79430 | brian.curtin | 2010-03-25 18:48:54 -0500 (Thu, 25 Mar 2010) | 2 lines
      
        Fix #6538. Markup RegexObject and MatchObject as classes. Patch by Ryan Arana.
      ........
        r79533 | barry.warsaw | 2010-03-31 16:07:16 -0500 (Wed, 31 Mar 2010) | 6 lines
      
        - Issue #8233: When run as a script, py_compile.py optionally takes a single
          argument `-` which tells it to read files to compile from stdin.  Each line
          is read on demand and the named file is compiled immediately.  (Original
          patch by Piotr O?\197?\188arowski).
      ........
        r79542 | r.david.murray | 2010-03-31 20:28:39 -0500 (Wed, 31 Mar 2010) | 3 lines
      
        A couple small grammar fixes in test.rst, and rewrite the
        check_warnings docs to be clearer.
      ........
        r79579 | georg.brandl | 2010-04-02 03:34:41 -0500 (Fri, 02 Apr 2010) | 1 line
      
        Add 2.6.5.
      ........
        r79580 | georg.brandl | 2010-04-02 03:39:09 -0500 (Fri, 02 Apr 2010) | 1 line
      
        #2768: add a note on how to get a file descriptor.
      ........
        r79585 | georg.brandl | 2010-04-02 04:03:18 -0500 (Fri, 02 Apr 2010) | 1 line
      
        Remove col-spanning cells in logging docs.
      ........
        r79586 | georg.brandl | 2010-04-02 04:07:42 -0500 (Fri, 02 Apr 2010) | 1 line
      
        Document PyImport_ExecCodeModuleEx().
      ........
        r79587 | georg.brandl | 2010-04-02 04:11:49 -0500 (Fri, 02 Apr 2010) | 1 line
      
        #8012: clarification in generator glossary entry.
      ........
        r79607 | andrew.kuchling | 2010-04-02 12:48:23 -0500 (Fri, 02 Apr 2010) | 1 line
      
        #6647: document that catch_warnings is not thread-safe
      ........
        r79608 | andrew.kuchling | 2010-04-02 12:54:26 -0500 (Fri, 02 Apr 2010) | 1 line
      
        #6647: add note to two examples
      ........
        r79622 | tarek.ziade | 2010-04-02 16:34:19 -0500 (Fri, 02 Apr 2010) | 1 line
      
        removed documentation on code that was reverted and pushed into distutils2
      ........
        r79717 | antoine.pitrou | 2010-04-03 16:22:38 -0500 (Sat, 03 Apr 2010) | 4 lines
      
        Fix wording / typography, and a slightly misleading statement
        (memoryviews don't support complex structures right now)
      ........
        r79820 | benjamin.peterson | 2010-04-05 22:34:09 -0500 (Mon, 05 Apr 2010) | 1 line
      
        ready _sre types
      ........
        r79822 | georg.brandl | 2010-04-06 03:18:15 -0500 (Tue, 06 Apr 2010) | 1 line
      
        #8320: document return value of recv_into().
      ........
        r79828 | georg.brandl | 2010-04-06 09:33:44 -0500 (Tue, 06 Apr 2010) | 1 line
      
        Add JP.
      ........
        r79862 | georg.brandl | 2010-04-06 15:27:59 -0500 (Tue, 06 Apr 2010) | 1 line
      
        Fix syntax.
      ........
        r79875 | mark.dickinson | 2010-04-06 17:18:23 -0500 (Tue, 06 Apr 2010) | 1 line
      
        More NaN consistency doc fixes.
      ........
        r79923 | georg.brandl | 2010-04-10 06:15:24 -0500 (Sat, 10 Apr 2010) | 1 line
      
        #8360: skipTest was added in 2.7.
      ........
        r79924 | georg.brandl | 2010-04-10 06:16:59 -0500 (Sat, 10 Apr 2010) | 1 line
      
        #8346: update version.
      ........
        r79941 | andrew.kuchling | 2010-04-10 20:39:36 -0500 (Sat, 10 Apr 2010) | 1 line
      
        Two grammar fixes
      ........
        r79942 | andrew.kuchling | 2010-04-10 20:40:06 -0500 (Sat, 10 Apr 2010) | 1 line
      
        Punctuation fix
      ........
        r79943 | andrew.kuchling | 2010-04-10 20:40:30 -0500 (Sat, 10 Apr 2010) | 1 line
      
        Add various items
      ........
        r79945 | andrew.kuchling | 2010-04-10 20:40:49 -0500 (Sat, 10 Apr 2010) | 1 line
      
        name correct
      ........
        r79947 | andrew.kuchling | 2010-04-10 20:44:13 -0500 (Sat, 10 Apr 2010) | 1 line
      
        Remove distutils section
      ........
        r79951 | andrew.kuchling | 2010-04-11 07:48:08 -0500 (Sun, 11 Apr 2010) | 1 line
      
        Two typo fixes
      ........
        r79952 | andrew.kuchling | 2010-04-11 07:49:37 -0500 (Sun, 11 Apr 2010) | 1 line
      
        Add two items
      ........
      08bf91c0
  24. 02 Nis, 2010 1 kayıt (commit)
  25. 25 Mar, 2010 1 kayıt (commit)
  26. 21 Mar, 2010 1 kayıt (commit)
    • Georg Brandl's avatar
      Merged revisions… · 5a7eca17
      Georg Brandl yazdı
      Merged revisions 77593,77702-77703,77858,77887,78113-78115,78117,78245,78385-78386,78496,78760,78771-78773,78802 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r77593 | georg.brandl | 2010-01-18 00:33:53 +0100 (Mo, 18 Jan 2010) | 1 line
      
        Fix internal reference.
      ........
        r77702 | georg.brandl | 2010-01-23 09:43:31 +0100 (Sa, 23 Jan 2010) | 1 line
      
        #7762: fix refcount annotation of PyUnicode_Tailmatch().
      ........
        r77703 | georg.brandl | 2010-01-23 09:47:54 +0100 (Sa, 23 Jan 2010) | 1 line
      
        #7725: fix referencing issue.
      ........
        r77858 | georg.brandl | 2010-01-30 18:57:48 +0100 (Sa, 30 Jan 2010) | 1 line
      
        #7802: fix invalid example (heh).
      ........
        r77887 | georg.brandl | 2010-01-31 19:51:49 +0100 (So, 31 Jan 2010) | 5 lines
      
        Fix-up ftplib documentation:
        move exception descriptions to toplevel, not inside a class
        remove attribution in "versionadded"
        spell and grammar check docstring of FTP_TLS
      ........
        r78113 | georg.brandl | 2010-02-08 23:37:20 +0100 (Mo, 08 Feb 2010) | 1 line
      
        Fix missing string formatting argument.
      ........
        r78114 | georg.brandl | 2010-02-08 23:37:52 +0100 (Mo, 08 Feb 2010) | 1 line
      
        Fix undefined local.
      ........
        r78115 | georg.brandl | 2010-02-08 23:40:51 +0100 (Mo, 08 Feb 2010) | 1 line
      
        Fix missing string formatting placeholder.
      ........
        r78117 | georg.brandl | 2010-02-08 23:48:37 +0100 (Mo, 08 Feb 2010) | 1 line
      
        Convert test failure from output-producing to self.fail().
      ........
        r78245 | georg.brandl | 2010-02-19 20:36:08 +0100 (Fr, 19 Feb 2010) | 1 line
      
        #7967: PyXML is no more.
      ........
        r78385 | georg.brandl | 2010-02-23 22:33:17 +0100 (Di, 23 Feb 2010) | 1 line
      
        #8000: fix deprecated directive.  What a shame to lose that glorious issue number to such a minor bug :)
      ........
        r78386 | georg.brandl | 2010-02-23 22:48:57 +0100 (Di, 23 Feb 2010) | 1 line
      
        #6544: fix refleak in kqueue, occurring in certain error conditions.
      ........
        r78496 | georg.brandl | 2010-02-27 15:58:08 +0100 (Sa, 27 Feb 2010) | 1 line
      
        Link to http://www.python.org/dev/workflow/ from bugs page.
      ........
        r78760 | georg.brandl | 2010-03-07 16:23:59 +0100 (So, 07 Mär 2010) | 1 line
      
        #5341: more built-in vs builtin fixes.
      ........
        r78771 | georg.brandl | 2010-03-07 21:58:31 +0100 (So, 07 Mär 2010) | 1 line
      
        #8085: The function is called PyObject_NewVar, not PyObject_VarNew.
      ........
        r78772 | georg.brandl | 2010-03-07 22:12:28 +0100 (So, 07 Mär 2010) | 1 line
      
        #8039: document conditional expressions better, giving them their own section.
      ........
        r78773 | georg.brandl | 2010-03-07 22:32:06 +0100 (So, 07 Mär 2010) | 1 line
      
        #8044: document Py_{Enter,Leave}RecursiveCall functions.
      ........
        r78802 | georg.brandl | 2010-03-08 17:28:40 +0100 (Mo, 08 Mär 2010) | 1 line
      
        Fix typo.
      ........
      5a7eca17
  27. 03 Şub, 2010 2 kayıt (commit)
    • Benjamin Peterson's avatar
      Merged revisions 77937 via svnmerge from · 23b9ef72
      Benjamin Peterson yazdı
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ................
        r77937 | benjamin.peterson | 2010-02-02 20:35:45 -0600 (Tue, 02 Feb 2010) | 75 lines
      
        Merged revisions 77484,77487,77561,77570,77593,77603,77608,77667,77702-77703,77739,77858,77887,77889 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r77484 | skip.montanaro | 2010-01-13 19:12:34 -0600 (Wed, 13 Jan 2010) | 4 lines
      
          Update PyEval_EvalFrame to PyEval_EvalFrameEx.  This looks to have been done
          partially before.  Also add a comment describing how this might have to work
          with different versions of the interpreter.
        ........
          r77487 | ezio.melotti | 2010-01-14 05:34:10 -0600 (Thu, 14 Jan 2010) | 1 line
      
          Fixed typo
        ........
          r77561 | georg.brandl | 2010-01-17 02:42:30 -0600 (Sun, 17 Jan 2010) | 1 line
      
          #7699: improve datetime docs: straightforward linking to strftime/strptime section, mark classmethods as such.
        ........
          r77570 | georg.brandl | 2010-01-17 06:14:42 -0600 (Sun, 17 Jan 2010) | 1 line
      
          Add note about usage of STRINGLIB_EMPTY.
        ........
          r77593 | georg.brandl | 2010-01-17 17:33:53 -0600 (Sun, 17 Jan 2010) | 1 line
      
          Fix internal reference.
        ........
          r77603 | benjamin.peterson | 2010-01-18 17:07:56 -0600 (Mon, 18 Jan 2010) | 8 lines
      
          data descriptors do not override the class dictionary if __get__ is not defined
      
          Adjust documentation and add a test to verify this behavior.
      
          See http://mail.python.org/pipermail/python-dev/2010-January/095637.html for
          discussion.
        ........
          r77608 | gregory.p.smith | 2010-01-19 02:19:03 -0600 (Tue, 19 Jan 2010) | 6 lines
      
          Do not compile stubs for the sha2 series hashes in the openssl hashlib
          module when the openssl version is too old to support them.  That
          leads both compiled code bloat and to unittests attempting to test
          implementations that don't exist for comparison purposes on such
          platforms.
        ........
          r77667 | mark.dickinson | 2010-01-21 12:32:27 -0600 (Thu, 21 Jan 2010) | 1 line
      
          Add two more test_strtod test values.
        ........
          r77702 | georg.brandl | 2010-01-23 02:43:31 -0600 (Sat, 23 Jan 2010) | 1 line
      
          #7762: fix refcount annotation of PyUnicode_Tailmatch().
        ........
          r77703 | georg.brandl | 2010-01-23 02:47:54 -0600 (Sat, 23 Jan 2010) | 1 line
      
          #7725: fix referencing issue.
        ........
          r77739 | benjamin.peterson | 2010-01-24 21:52:52 -0600 (Sun, 24 Jan 2010) | 1 line
      
          mention from_float() in error message
        ........
          r77858 | georg.brandl | 2010-01-30 11:57:48 -0600 (Sat, 30 Jan 2010) | 1 line
      
          #7802: fix invalid example (heh).
        ........
          r77887 | georg.brandl | 2010-01-31 12:51:49 -0600 (Sun, 31 Jan 2010) | 5 lines
      
          Fix-up ftplib documentation:
          move exception descriptions to toplevel, not inside a class
          remove attribution in "versionadded"
          spell and grammar check docstring of FTP_TLS
        ........
          r77889 | michael.foord | 2010-01-31 13:59:26 -0600 (Sun, 31 Jan 2010) | 1 line
      
          Minor modification to unittest documentation.
        ........
      ................
      23b9ef72
    • Benjamin Peterson's avatar
      Merged revisions… · 5e55b3e2
      Benjamin Peterson yazdı
      Merged revisions 77484,77487,77561,77570,77593,77603,77608,77667,77702-77703,77739,77858,77887,77889 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r77484 | skip.montanaro | 2010-01-13 19:12:34 -0600 (Wed, 13 Jan 2010) | 4 lines
      
        Update PyEval_EvalFrame to PyEval_EvalFrameEx.  This looks to have been done
        partially before.  Also add a comment describing how this might have to work
        with different versions of the interpreter.
      ........
        r77487 | ezio.melotti | 2010-01-14 05:34:10 -0600 (Thu, 14 Jan 2010) | 1 line
      
        Fixed typo
      ........
        r77561 | georg.brandl | 2010-01-17 02:42:30 -0600 (Sun, 17 Jan 2010) | 1 line
      
        #7699: improve datetime docs: straightforward linking to strftime/strptime section, mark classmethods as such.
      ........
        r77570 | georg.brandl | 2010-01-17 06:14:42 -0600 (Sun, 17 Jan 2010) | 1 line
      
        Add note about usage of STRINGLIB_EMPTY.
      ........
        r77593 | georg.brandl | 2010-01-17 17:33:53 -0600 (Sun, 17 Jan 2010) | 1 line
      
        Fix internal reference.
      ........
        r77603 | benjamin.peterson | 2010-01-18 17:07:56 -0600 (Mon, 18 Jan 2010) | 8 lines
      
        data descriptors do not override the class dictionary if __get__ is not defined
      
        Adjust documentation and add a test to verify this behavior.
      
        See http://mail.python.org/pipermail/python-dev/2010-January/095637.html for
        discussion.
      ........
        r77608 | gregory.p.smith | 2010-01-19 02:19:03 -0600 (Tue, 19 Jan 2010) | 6 lines
      
        Do not compile stubs for the sha2 series hashes in the openssl hashlib
        module when the openssl version is too old to support them.  That
        leads both compiled code bloat and to unittests attempting to test
        implementations that don't exist for comparison purposes on such
        platforms.
      ........
        r77667 | mark.dickinson | 2010-01-21 12:32:27 -0600 (Thu, 21 Jan 2010) | 1 line
      
        Add two more test_strtod test values.
      ........
        r77702 | georg.brandl | 2010-01-23 02:43:31 -0600 (Sat, 23 Jan 2010) | 1 line
      
        #7762: fix refcount annotation of PyUnicode_Tailmatch().
      ........
        r77703 | georg.brandl | 2010-01-23 02:47:54 -0600 (Sat, 23 Jan 2010) | 1 line
      
        #7725: fix referencing issue.
      ........
        r77739 | benjamin.peterson | 2010-01-24 21:52:52 -0600 (Sun, 24 Jan 2010) | 1 line
      
        mention from_float() in error message
      ........
        r77858 | georg.brandl | 2010-01-30 11:57:48 -0600 (Sat, 30 Jan 2010) | 1 line
      
        #7802: fix invalid example (heh).
      ........
        r77887 | georg.brandl | 2010-01-31 12:51:49 -0600 (Sun, 31 Jan 2010) | 5 lines
      
        Fix-up ftplib documentation:
        move exception descriptions to toplevel, not inside a class
        remove attribution in "versionadded"
        spell and grammar check docstring of FTP_TLS
      ........
        r77889 | michael.foord | 2010-01-31 13:59:26 -0600 (Sun, 31 Jan 2010) | 1 line
      
        Minor modification to unittest documentation.
      ........
      5e55b3e2
  28. 23 Ock, 2010 1 kayıt (commit)
  29. 28 Ara, 2009 2 kayıt (commit)
  30. 05 May, 2009 1 kayıt (commit)
  31. 03 Ock, 2009 2 kayıt (commit)
  32. 02 Tem, 2008 1 kayıt (commit)
  33. 03 Ara, 2007 1 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions 59275-59303 via svnmerge from · cbf3b5cb
      Christian Heimes yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
      NOTE: The merge does NOT contain the modified file Python/import.c from
            r59288. I can't get it running. Nick, please check in the PEP 366
            manually.
      !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
      
      ........
        r59279 | georg.brandl | 2007-12-02 19:17:50 +0100 (Sun, 02 Dec 2007) | 2 lines
      
        Fix a sentence I missed before. Do not merge to 3k.
      ........
        r59281 | georg.brandl | 2007-12-02 22:58:54 +0100 (Sun, 02 Dec 2007) | 3 lines
      
        Add documentation for PySys_* functions.
        Written by Charlie Shepherd for GHOP. Also fixes #1245.
      ........
        r59288 | nick.coghlan | 2007-12-03 13:55:17 +0100 (Mon, 03 Dec 2007) | 1 line
      
        Implement PEP 366
      ........
        r59290 | christian.heimes | 2007-12-03 14:47:29 +0100 (Mon, 03 Dec 2007) | 3 lines
      
        Applied my patch #1455 with some extra fixes for VS 2005
        The new msvc9compiler module supports VS 2005 and VS 2008. I've also fixed build_ext to support PCbuild8 and PCbuild9 and backported my fix for xxmodule.c from py3k. The old code msvccompiler is still in place in case somebody likes to build an extension with VS 2003 or earlier.
        I've also updated the cygwin compiler module for VS 2005 and VS 2008. It works with VS 2005 but I'm unable to test it with VS 2008. We have to wait for a new version of cygwin.
      ........
        r59291 | christian.heimes | 2007-12-03 14:55:16 +0100 (Mon, 03 Dec 2007) | 1 line
      
        Added comment to Misc/NEWS for r59290
      ........
        r59292 | christian.heimes | 2007-12-03 15:28:04 +0100 (Mon, 03 Dec 2007) | 1 line
      
        I followed MA Lemberg's suggestion and added comments to the late initialization of the type slots.
      ........
        r59293 | facundo.batista | 2007-12-03 17:29:52 +0100 (Mon, 03 Dec 2007) | 3 lines
      
      
        Speedup and cleaning of __str__.  Thanks Mark Dickinson.
      ........
        r59294 | facundo.batista | 2007-12-03 18:55:00 +0100 (Mon, 03 Dec 2007) | 4 lines
      
      
        Faster _fix function, and some reordering for a more elegant
        coding. Thanks Mark Dickinson.
      ........
        r59295 | martin.v.loewis | 2007-12-03 20:20:02 +0100 (Mon, 03 Dec 2007) | 5 lines
      
        Issue #1727780: Support loading pickles of random.Random objects created
        on 32-bit systems on 64-bit systems, and vice versa. As a consequence
        of the change, Random pickles created by Python 2.6 cannot be loaded
        in Python 2.5.
      ........
        r59297 | facundo.batista | 2007-12-03 20:49:54 +0100 (Mon, 03 Dec 2007) | 3 lines
      
      
        Two small fixes. Issue 1547.
      ........
        r59299 | georg.brandl | 2007-12-03 20:57:02 +0100 (Mon, 03 Dec 2007) | 2 lines
      
        #1548: fix apostroph placement.
      ........
        r59300 | christian.heimes | 2007-12-03 21:01:02 +0100 (Mon, 03 Dec 2007) | 3 lines
      
        Patch #1537 from Chad Austin
        Change GeneratorExit's base class from Exception to BaseException
        (This time I'm applying the patch to the correct sandbox.)
      ........
        r59302 | georg.brandl | 2007-12-03 21:03:46 +0100 (Mon, 03 Dec 2007) | 3 lines
      
        Add examples to the xmlrpclib docs.
        Written for GHOP by Josip Dzolonga.
      ........
      cbf3b5cb